-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
116 lines (94 loc) · 2.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[tool.poetry]
name = "ipsuite"
version = "0.2.4"
description = "A suite of tools for machine learned interatomic potentials."
authors = ["zincwarecode <[email protected]>"]
keywords = ["data-version-control", "machine-learning", "reproducibility", "interatomic potentials"]
license = "License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)"
readme = "README.md"
[tool.poetry.urls]
documentation = "https://ipsuite.readthedocs.io"
repository = "https://github.com/zincware/ipsuite"
[tool.poetry.dependencies]
# tensorflow-io-gcs-filesystem
python = ">=3.10,<4.0.0"
znh5md = "^0.4.1"
ase = "^3.23"
seaborn = "^0.12.2"
cp2k-input-tools = "^0.9"
cp2k-output-tools = "^0.5.0"
lazy-loader = "0.4"
zntrack = "0.8.1"
uncertainty-toolbox = "^0.1.1"
rdkit2ase = "^0.1.4"
[tool.poetry.group.GAP.dependencies]
quippy-ase = "^0.9.12"
xmltodict = "^0.13.0"
[tool.poetry.group.d3.dependencies]
torch-dftd = "^0.4.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
pytest = "^7.2.1"
coverage = "^7.2.1"
imageio = "^2.28.1"
dvc-s3 = "^3.0.1"
mdanalysis = "^2.7.0"
[tool.poetry.group.notebook.dependencies]
jupyterlab = "^3.6.1"
ipywidgets = "^8.0.6"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
furo = "^2024.1.29"
sphinx-copybutton = "^0.5.2"
[tool.poetry.extras]
comparison = ["h5py", "tensorflow", "dscribe"]
gap = ["quippy-ase", "xmltodict"]
d3 = ["torch-dftd"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.black]
line-length = 90
preview = true
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"tests",
]
# Same as Black.
line-length = 90
# Assume Python 3.10.
target-version = "py310"
[tool.ruff.lint]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["A", "B", "C", "E", "F", "I", "C90", "C4", "TID", "PTH"] # "D", "S"
# ignore = ["D203", "D213", "D104", "D102", "D100", ]
ignore = [
"B905", # not supported in older python versions
]
[tool.codespell]
ignore-words-list = "dscribe"
skip = "poetry.lock,ipsuite/static_data/*,docs/source/examples/06_Bootstrapping_Datasets.ipynb"