-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
97 lines (86 loc) · 2.23 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
[project]
name = "ipsuite"
version = "0.2.4"
description = "A suite of tools for machine learned interatomic potentials."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["data-version-control", "machine-learning", "reproducibility", "interatomic potentials"]
dependencies = [
"ase>=3.24.0",
"cp2k-input-tools>=0.9.1",
"cp2k-output-tools>=0.5.0",
"lazy-loader>=0.4",
"rdkit2ase>=0.1.4",
"seaborn>=0.13.2",
"uncertainty-toolbox>=0.1.1",
"znh5md>=0.4.4",
"zntrack>=0.8.3",
]
authors = [
{ name = "Fabian Zills", email = "fzills@icp.uni-stuttgart.de" },
{ name = "Moritz René Schäfer", email = "schaefer@theochem.uni-stuttgart.de" },
{ name = "Nico Segreto", email = "segreto@theochem.uni-stuttgart.de" },
]
classifiers = ["License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)"]
[project.urls]
Repository = "https://github.com/zincware/ipsuite"
Releases = "https://github.com/zincware/ipsuite/releases"
Discord = "https://discord.gg/7ncfwhsnm4"
Documentation = "https://ipsuite.readthedocs.io"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
docs = [
"furo>=2024.8.6",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
]
gap = [
"quippy-ase>=0.9.14",
"xmltodict>=0.14.2",
]
dev = [
"dvc-s3>=3.2.0",
"imageio>=2.37.0",
"mdanalysis>=2.8.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
]
[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
[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"