-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (45 loc) · 1.15 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "bempp-rs"
version = "0.2.0-dev"
description = "Boundary element method library"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{name = "Timo Betcke", email = "[email protected]"},
{name = "Srinath Kailasa", email = "[email protected]"},
{name = "Matthew Scroggs", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"maturin>=1.7.2",
"numpy",
"scipy",
"cffi",
'patchelf; platform_system == "Linux"',
"ndelement",
"ndgrid"
]
packages = ["bempp", "bempp.assembly"]
[project.urls]
homepage = "https://github.com/bempp/bempp-rs"
repository = "https://github.com/bempp/bempp-rs"
[tool.maturin]
python-source = "python"
module-name = "bempp._bempprs"
no-default-features = true
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
ignore_missing_imports = true