-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 966 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
[project]
name = "dantzig"
version = "0.2.0"
description = "A Rust-powered linear programming library for Python."
authors = [
{ name = "Matteo Santamaria", email = "matteosantama@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Typing :: Typed"
]
[project.urls]
repository = "https://github.com/matteosantama/dantzig"
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[tool.maturin]
python-source = "python-source"
[tool.isort]
profile = "black"
known_first_party = ["dantzig"]
[tool.mypy]
files = ["python-source/dantzig", "tests"]
strict = "true"
enable_error_code = ["ignore-without-code"]
[[tool.mypy.overrides]]
module = "dantzig.rust"
ignore_missing_imports = "true"