-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (69 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "hyperdrivepy"
version = "0.18.1"
authors = [
{ name = "Dylan Paiton", email = "[email protected]" },
{ name = "Matthew Brown", email = "[email protected]" },
{ name = "Sheng Lundquist", email = "[email protected]" },
]
requires-python = ">=3.8"
# We point this readme to the one in hyperdrivepy
readme = "bindings/hyperdrivepy/README.md"
dependencies = [
"hyperdrivetypes >= 1.0.19.6",
]
[project.optional-dependencies]
dev = [
"black==24.*",
"build",
"cibuildwheel",
"jinja2",
"platformdirs",
"pylint",
"pyright",
"pytest",
"setuptools",
"setuptools-rust",
"twine",
"wheel",
]
all = ["hyperdrivepy[dev]"]
[project.urls]
Homepage = "https://github.com/delvtech/hyperdrive-rs"
Issues = "https://github.com/delvtech/hyperdrive-rs/issues"
[build-system]
requires = ["setuptools", "wheel", "setuptools-rust"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["--tb=short"]
norecursedirs = ".git examples hyperdrive"
python_files = ["*_test.py", "*_tests.py"]
[tool.pylint.format]
max-line-length = "120"
[tool.black]
line-length = "120"
extend-exclude = "\\.ipynb"
[tool.pylint.MASTER]
ignore = [
"hyperdrive",
".venv",
".vscode",
"docs",
]
notes = ["FIXME"]
max-line-length = 120
ignore-docstrings = 'no'
ignore-imports = 'no'
disable='duplicate-code'
extension-pkg-allow-list="hyperdrivepy"
[tool.pyright]
include = ["bindings/hyperdrivepy"]
exclude = [
"crates/",
".venv",
".vscode",
"docs",
"**/__pycache__"
]
reportMissingImports = false