-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.2 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
[project]
name = "znh5md"
version = "0.4.4"
description = "ASE Interface for the H5MD format."
authors = [
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ase>=3.24.0",
"h5py>=3.12.1",
"tqdm>=4.67.1",
"typer>=0.15.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
znh5md = "znh5md.cli:app"
[project.urls]
Repository = "https://github.com/zincware/ZnH5MD"
Releases = "https://github.com/zincware/ZnH5MD/releases"
Discord = "https://discord.gg/7ncfwhsnm4"
[tool.ruff.lint]
select = ["E", "F", "N", "C", "I"]
extend-ignore = [
"D213", "D203", "N802", "N801"
]
[tool.codespell]
skip = "poetry.lock,*.ipynb"
[tool.pytest.ini_options]
addopts = "-m 'not benchmark'"
[dependency-groups]
dev = [
"chemfiles>=0.10.4",
"coverage>=7.6.10",
"mdanalysis>=2.8.0",
"mdtraj>=1.10.2",
"networkx>=3.4.2",
"numpy<2",
"pandas>=2.2.3",
"pyh5md>=1.0.0",
"pytest>=8.3.4",
"pytest-benchmark[histogram]>=5.1.0",
"rdkit2ase>=0.1.4",
]
[project.entry-points."ase.ioformats"]
znh5md = "znh5md.ase_plugin:znh5md_format"