-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
99 lines (89 loc) · 1.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "stk"
maintainers = [
{ name = "Lukas Turcani", email = "lukasturcani93@gmail.com" },
{ name = "Andrew Tarzia", email = "andrew.tarzia@gmail.com" },
]
dependencies = [
"atomlite",
"scipy",
"matplotlib",
"pandas",
"pathos",
"seaborn",
"numpy",
"pymongo[srv]",
"MCHammer",
"SpinDry",
"vabene",
"rdkit != 2024.3.5",
]
requires-python = ">=3.11"
dynamic = ["version"]
readme = "README.rst"
[project.optional-dependencies]
dev = [
"ruff",
"moldoc==3.0.0",
"mypy",
"pip-tools",
# TODO: Remove pin when https://github.com/TvoroG/pytest-lazy-fixture/issues/65 is resolved.
# pytest-lazy-fixture 0.6.0 is incompatible with pytest 8.0.0
"pytest<8",
"pytest-benchmark",
"pytest-datadir",
"pytest-lazy-fixture",
"pytest-cov",
"sphinx",
"sphinx-copybutton",
"sphinx-rtd-theme",
"twine",
"chemiscope",
]
[project.urls]
github = "https://github.com/lukasturcani/stk"
documentation = "https://stk.readthedocs.io"
[tool.setuptools_scm]
write_to = "src/stk/_version.py"
[tool.ruff]
line-length = 79
[too.ruff.lint]
extend-select = ["I"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
python_files = [
"test_*.py",
"*_test.py",
"benchmark_*.py",
"*_benchmark.py",
]
python_functions = [
"test_*",
"benchmark_*",
]
[tool.mypy]
show_error_codes = true
implicit_optional = false
warn_no_return = true
strict_optional = true
[[tool.mypy.overrides]]
module = [
"rdkit.*",
"scipy.*",
"pytest_lazyfixture.*",
"pathos.*",
"matplotlib.*",
"pandas.*",
"seaborn.*",
"mchammer.*",
"spindry.*",
"pymongo.*",
"vabene.*",
"setuptools.*"
]
ignore_missing_imports = true