-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
102 lines (89 loc) · 2.12 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
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
[project]
name = "apax"
version = "0.10.2"
description = "Atomistic Learned Potential Package in JAX"
keywords=["machine-learning", "interatomic potentials", "molecular-dynamics"]
readme = "README.md"
authors = [
{ name = "Moritz René Schäfer", email = "[email protected]" },
{ name = "Nico Segreto", email = "[email protected]" },
]
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"ase>=3.24.0",
"clu>=0.0.12",
"e3x>=1.0.2",
"einops>=0.8.0",
"flax>=0.10.2",
"jax>=0.4.38",
"lazy-loader>=0.4",
"numpy>=1.23",
"optax>=0.2.4",
"orbax-checkpoint>=0.11.0",
"pydantic>=2.10.5",
"tensorflow>=2.12.0",
"typer>=0.13.0",
"uncertainty-toolbox>=0.1.1",
"vesin>=0.3.0",
"znh5md>=0.4.2",
]
[project.optional-dependencies]
cuda = ["jax[cuda]"]
mlflow = [
"mlflow>=2.19.0",
]
ipsuite = [
"ipsuite>=0.2.3",
]
docs = [
"sphinx>=7.2.6",
"sphinx-rtd-theme>=1.3.0",
"myst-parser>=2.0.0",
"sphinx-copybutton>=0.5.2",
"furo>=2023.9.10",
"nbsphinx>=0.9.3",
"nbsphinx-link>=1.3.0",
"ipykernel>=6.29.3",
"pandoc>=2.3",
]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"matplotlib>=3.10.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
]
lint = [
"ruff>=0.9.1",
]
[project.scripts]
apax = 'apax.cli.apax_app:app'
[project.urls]
Repository = "https://github.com/apax-hub/apax"
Releases = "https://github.com/apax-hub/apax/releases"
Discord = "https://discord.gg/7ncfwhsnm4"
Documentation = "https://apax.readthedocs.io/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 90
[tool.ruff.lint]
select = ["E", "F", "C", "I", "E"]
extend-ignore = [
"E501", "E731", "E741", "E402", "F841", "F811", "C901", "E203", "E402"
]
[tool.coverage.run]
branch = true
source = ["apax"]
[tool.coverage.html]
directory = "coverage_html_report"
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
filterwarnings = ["ignore::FutureWarning:jax.*scatter",]
markers = [
"slow: mark a test as slow and should only run explicitly"
]