-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 997 Bytes
/
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
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "ndgrid"
version = "0.1.5-dev"
description = "n-dimensional grid library."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{name = "Matthew Scroggs", email = "rust@mscroggs.co.uk"}
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"maturin>=1.7.2",
"numpy",
"cffi",
'patchelf; platform_system == "Linux"',
"ndelement"
]
packages = ["ndgrid"]
[project.urls]
homepage = "https://github.com/bempp/ndgrid"
repository = "https://github.com/bempp/ndgrid"
[tool.maturin]
python-source = "python"
module-name = "ndgrid._ndgridrs"
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