-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.07 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
[build-system]
requires = ["uv-build>=0.10.12,<0.11"]
build-backend = "uv_build"
[project]
name = "lavello_mlips"
version = "0.1.21"
description = "A Python package for processing omol-25 data using MPI."
readme = "README.md"
authors = [
{ name = "Alin M Elena" }
]
requires-python = ">=3.10"
dependencies = [
"boto3",
"pandas",
"ase",
"mpi4py",
"tqdm",
"zstandard",
"pyarrow",
"fastparquet",
"lmdb",
"orjson",
"mace-torch>=0.3.15",
"janus-core",
"pyyaml",
"matplotlib",
"scikit-learn",
"altair",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest-cov"
]
docs = [
"sphinx",
"sphinx-material"
]
[project.scripts]
lavello_mlips = "lavello_mlips.cli:main"
download_omol25 = "lavello_mlips.download_omol25:main"
verify_processed_omol25 = "lavello_mlips.verify_processed_omol25:main"
convert_to_lmdb = "lavello_mlips.convert_to_lmdb:main"
plot_train_results = "lavello_mlips.plot_train_results:main"
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "--cov=src --cov-report=term-missing"