-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (104 loc) · 2.79 KB
/
pyproject.toml
File metadata and controls
123 lines (104 loc) · 2.79 KB
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
117
118
119
120
121
122
123
[project]
name = "ipsuite"
dynamic = ["version"]
description = "A suite of tools for machine learned interatomic potentials."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["data-version-control", "machine-learning", "reproducibility", "interatomic potentials"]
dependencies = [
"ase>=3.24.0",
"laufband>=0.2.0",
"lazy-loader>=0.4",
"pint>=0.24.4",
"rdkit2ase>=0.1.7",
"seaborn>=0.13.2",
"typing-extensions>=4.12.2",
"uncertainty-toolbox>=0.1.1",
"znh5md>=0.4.8",
"zntrack>=0.8.9",
]
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", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0.0"
[tool.hatch.build.hooks.vcs]
version-file = "ipsuite/_version.py"
[dependency-groups]
docs = [
"furo>=2024.8.6",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
]
dev = [
"dvc-s3>=3.2.0",
"ipykernel>=6.29.5",
"mace-torch>=0.3.13",
"mdanalysis>=2.8.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"cp2k-input-tools",
"pyright>=1.1.408",
]
[project.optional-dependencies]
d3 = [
"torch-dftd>=0.5.1",
"torch>=2.3.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,*.out"
[tool.uv.sources]
cp2k-input-tools = { git = "https://github.com/cp2k/cp2k-input-tools" }
[project.entry-points.'zntrack.nodes']
ipsuite = 'ipsuite.nodes:nodes'
[project.entry-points.'zntrack.interfaces']
ipsuite = 'ipsuite.interfaces:interfaces'
[tool.pytest.ini_options]
addopts = "--doctest-modules"