-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
86 lines (75 loc) · 1.78 KB
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
[project]
name = "directmultistep"
version = "1.1.3"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26.4",
"lightning>=2.2.5",
"pyyaml>=6.0.1",
"rdkit>=2023.9.3",
"torch>=2.3.0",
"tqdm>=4.67.1",
]
authors = [
{ name = "Anton Morgunov", email = "anton@ischemist.com" },
{ name = "Yu Shee", email = "yu.shee@yale.edu" },
]
license = { text = "MIT" }
readme = "README.md"
[project.urls]
Homepage = "https://github.com/batistagroup/DirectMultiStep"
Issues = "https://github.com/batistagroup/DirectMultiStep/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.package-data]
"directmultistep.model.default_configs" = ["*.yaml"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"nbformat>=5.10.4",
"rich>=13.9.4",
"kaleido==0.2.1",
"pre-commit>=4.0.1",
"mkdocs>=1.6.1",
"mkdocstrings-python>=1.12.2",
"mkdocs-material>=9.5.49",
"material-plausible-plugin>=0.3.0",
"pytest>=8.3.4",
"ruff>=0.12.5",
"mypy>=1.17.0",
"typing-extensions>=4.12.2",
"mypy-extensions>=1.0.0",
"types-pyyaml",
"types-tqdm",
"types-requests",
]
[project.optional-dependencies]
vis = [
"svgwrite>=1.4.3",
"svglib>=1.5.1",
"plotly>=5.24.1",
]
[tool.mypy]
strict = true
ignore_missing_imports = true
exclude = ["tests"]
disable_error_code = ["unused-ignore"]
[[tool.mypy.overrides]]
module = ["rdkit-stubs.*", "rdkit.*"]
ignore_errors = true
[tool.ruff]
line-length = 120
lint.select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
lint.ignore = ["E501"]
[tool.pytest.ini_options]
addopts = "-m 'not ckptreq'"