-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
46 lines (43 loc) · 1.18 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
[tool.poetry]
name = "ORDerly"
version = "1.0.0"
description = "Extraction and cleaning of chemical reactions data from ORD"
authors = [
"Daniel S. Wigh <[email protected]>",
"Joe Arrowsmith <[email protected]>",
"Alexander Pomberger <[email protected]>",
"Kobi C. Felton <[email protected]>",
"Alexei A. Lapkin <[email protected]>",
]
maintainers = [
"Daniel S. Wigh <[email protected]>",
"Joe Arrowsmith <[email protected]>",
]
# New attributes
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sustainable-processes/ORDerly"
repository = "https://github.com/sustainable-processes/ORDerly"
keywords = ["ord-schema", "RDKit", "ord-data", "chemical-reactions"]
[tool.poetry.dependencies]
python = "^3.10"
rdkit = "^2022.9.5"
ord-schema = "^0.3.44"
click = "^8.1.3"
tqdm = "^4.65.0"
joblib = "^1.2.0"
fastparquet = "^2023.2.0"
psutil = "^5.9.4"
types-requests = "^2.31.0.1"
pyarrow = "^12.0.0"
numpy = "<2.0.0"
[tool.poetry.group.dev.dependencies]
pytest-split = "^0.8.1"
pytest = "^7.2.2"
black = "^23.3.0"
mypy = "^1.2.0"
ipykernel = "^6.22.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"