-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (43 loc) · 1.08 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
[tool.poetry]
name = "znh5md"
version = "0.4.2"
description = "ASE Interface for the H5MD format."
authors = ["zincwarecode <zincwarecode@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
h5py = "^3"
ase = "^3.23"
tqdm = "^4"
typer = {extras = ["all"], version = "^0"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pre-commit = "^2.20.0"
ruff = "^0.4"
mdanalysis = "^2.8"
coverage = "^7.5.3"
pyh5md = "^1.0.0"
pytest-benchmark = {extras = ["histogram"], version = "^4.0.0"}
networkx = "^3.3"
rdkit2ase = "^0.1.4"
[tool.poetry.group.benchmark.dependencies]
pandas = "^2.2.2"
chemfiles = "^0.10.4"
mdtraj = "^1.10.0"
[tool.poetry.scripts]
znh5md = 'znh5md.cli:app'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[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'"
[tool.poetry.plugins."ase.ioformats"]
znh5md = "znh5md.ase_plugin:znh5md_format"