-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (89 loc) · 2.64 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
100
101
102
[tool.kedro]
package_name = "mlsaft"
project_name = "mlsaft"
project_version = "0.18.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = "kedro"
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/mlsaft -ra"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]
[tool.poetry]
name = "mlsaft"
version = "0.1.0"
description = ""
authors = [
"Kobi Felton <kcmf2@cam.ac.uk>",
"Jan Ritting <jan.rittig@rwth-aachen.de>",
"Lukas Rasspe <lukas.rasspe@ltt.rwth-aachen.de>",
]
packages = [{ include = "mlsaft", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.8,!=3.9.7,<3.11"
matplotlib = "^3.5.1"
kedro = "^0.18.2"
jupyterlab = "^3.3.2"
wandb = "^0.12.16"
rdkit-pypi = "^2022.3.2"
molmass = "^2021.6.18"
Pint = "^0.19.2"
pydantic = "^1.9.1"
tqdm = "^4.64.0"
aiohttp = "^3.8.1"
lxml = "^4.9.0"
python-dotenv = "^0.20.0"
seaborn = "^0.11.2"
chemprop = "^1.5.1"
tensorboard = "^2.9.1"
fastparquet = "^0.8.1"
llvmlite = "^0.38.1"
umap-learn = "^0.5.3"
pystow = { version = "^0.4.5", optional = true }
matscipy = { version = "^0.8.0rc10", allow-prereleases = true }
schnetpack = "^2.0.0"
molplotly = "^1.1.5"
joblib = "^1.2.0"
latextable = "^1.0.0"
feos = "^0.4.1"
salib = "^1.4.7"
ray = { version = "^2.2.0", extras = ["default"] }
lmfit = "^1.1.0"
pura = "^0.2.4"
optuna = "^3.1.0"
pytorch-lightning = ">1.8.0,<2.0.0"
svgutils = "^0.3.4"
cairosvg = "^2.5.0"
[tool.poetry.extras]
stout = ["unicodedata2", "pystow"]
[tool.poe.tasks]
install-torch-cpu = "pip install torch>=1.13.0 -f https://download.pytorch.org/whl/torch_stable.html"
install-pyg-cpu = "pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric"
install-pyg-cpu-git = "pip install git+https://github.com/pyg-team/pyg-lib.git git+https://github.com/rusty1s/pytorch_scatter.git git+https://github.com/rusty1s/pytorch_sparse.git git+https://github.com/rusty1s/pytorch_cluster.git git+https://github.com/rusty1s/pytorch_spline_conv.git"
install-pyg = ["install-torch-cpu", "install-pyg-cpu", "install-pyg-cpu-git"]
[tool.poetry.group.dev.dependencies]
poethepoet = "^0.16.5"
ipykernel = "^6.9.1"
isort = "^4.3.21"
autoflake = "^1.3.1"
black = "^22.3.0"
mypy = "^0.761"
vulture = "^1.2"
pytest = "^6.0.0"
pytest-cov = "^2.8.1"
pytest-xdist = "^1.31.0"
kedro-viz = "^4.4.0"
nbdime = "^3.1.1"
[tool.poetry.group.cosmo_rs.dependencies]
cosmopy = { git = "https://github.com/sustainable-processes/COSMOpy.git" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"