-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (76 loc) · 1.88 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
[project]
name = "directmultistep"
version = "1.0.0"
requires-python = ">=3.11"
dependencies = [
"numpy==1.26.4",
"pandas==1.5.3",
"pdoc3==0.11.5",
"plotly==5.24.1",
"lightning==2.2.5",
"pyyaml==6.0.1",
"rdkit==2023.9.3",
"torch==2.3.0",
"torchmetrics==1.6.0",
"tqdm==4.67.1",
"svgwrite==1.4.3",
"svglib==1.5.1",
"tomli>=2.2.1",
]
authors = [
{ name = "Anton Morgunov", email = "anton@ischemist.com" },
{ name = "Yu Shee", email = "yu.shee@yale.edu" },
{ name = "Haote Li", email = "haote.li@yale.edu" },
]
license = { text = "MIT" }
readme = "README.md"
[project.urls]
Homepage = "https://github.com/batistagroup/DirectMultiStep"
Issues = "https://github.com/batistagroup/DirectMultiStep/issues"
[tool.setuptools]
packages = ["directmultistep"]
package-dir = { "" = "src" }
[project.optional-dependencies]
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",
"pytest==8.3.4",
"ruff==0.4.7",
"mypy==1.13.0",
"isort==5.13.2",
"typing-extensions==4.12.2",
"mypy-extensions==1.0.0",
"types-pyyaml",
"types-tqdm",
"types-requests",
]
[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
[tool.logging]
version = 1
disable_existing_loggers = false
[tool.logging.formatters.standard]
format = "%(asctime)s [%(levelname)s] %(name)s: %(message)s"
datefmt = "%Y-%m-%d %H:%M:%S"
[tool.logging.handlers.console]
class = "logging.StreamHandler"
formatter = "standard"
stream = "ext://sys.stdout"
[tool.logging.loggers.directmultistep]
handlers = ["console"]
propagate = false
level = "INFO"