forked from andrewtarzia/CGExplore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
91 lines (81 loc) · 1.42 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cgexplore"
maintainers = [
{ name = "Andrew Tarzia", email = "[email protected]" },
]
dependencies = [
"scipy",
"matplotlib",
"pandas",
"numpy",
"scikit-learn",
"stk",
"stko",
]
requires-python = ">=3.11"
dynamic = ["version"]
readme = "README.md"
[project.optional-dependencies]
dev = [
"black",
"ruff",
"moldoc",
"mypy",
"pip-tools",
"pytest",
"pytest-benchmark",
"pytest-datadir",
"pytest-lazy-fixture",
"pytest-cov",
"twine",
]
[project.urls]
github = "https://github.com/andrewtarzia/CGExplore"
[tool.setuptools_scm]
write_to = "src/cgexplore/_version.py"
[tool.setuptools.packages.find]
where = [
# list of folders that contain the packages (["."] by default)
"src",
]
[tool.black]
line-length = 79
[tool.ruff]
line-length = 79
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.*",
"matplotlib.*",
"pandas.*",
"stk.*",
"mchammer.*",
"pore_mapper.*",
"pywindow.*",
"openmmtools.*",
"openmm.*"
]
ignore_missing_imports = true