-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (79 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
87 lines (79 loc) · 2.02 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
[project]
name = "asebytes"
dynamic = ["version"]
description = "Fast binary serialization and storage for ASE Atoms."
authors = [
{ name = "Fabian Zills", email = "fzills@icp.uni-stuttgart.de" },
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ase>=3.26.0",
"msgpack>=1.1.2",
"msgpack-numpy>=0.4.8",
"typing_extensions>=4.5.0",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"asebytes[lmdb]",
"asebytes[hf]",
"ase-db-backends>=0.10.0",
"ipykernel>=7.1.0",
"matplotlib>=3.10.7",
"molify>=0.0.1a0",
"pandas>=2.3.3",
"pytest>=8.4.2",
"pytest-benchmark>=5.2.1",
"znh5md>=0.4.8",
"asebytes[zarr]",
"asebytes[h5]",
"asebytes[mongodb]",
"asebytes[redis]",
"anyio>=4.0",
]
[project.urls]
Repository = "https://github.com/zincware/asebytes"
Releases = "https://github.com/zincware/asebytes/releases"
Discord = "https://discord.gg/7ncfwhsnm4"
[project.optional-dependencies]
lmdb = [
"lmdb>=1.6.0",
]
hf = [
"datasets>=4.5.0",
]
h5 = [
"h5py>=3.12.0",
]
zarr = [
"zarr>=3.0",
]
mongodb = [
"pymongo>=4.13",
]
redis = [
"redis>=5.0",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/asebytes/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = ["-v", "--strict-markers", "-m", "not benchmark"]
markers = [
"benchmark: marks tests as benchmark tests (deselect with '-m \"not benchmark\"')",
"mongodb: marks tests requiring MongoDB",
"redis: marks tests requiring Redis",
"hf: marks tests requiring HuggingFace network access",
"supports_variable_particles: backend supports variable particle counts",
"supports_per_atom_arrays: backend supports per-atom custom arrays",
"supports_constraints: backend supports constraint round-trip",
"supports_nested_info: backend supports nested dict info values",
]