forked from deepmodeling/ABACUS-agent-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 970 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 970 Bytes
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
[build-system]
requires = ["setuptools>=45"]
build-backend = "setuptools.build_meta"
[project]
name = "abacusagent"
dynamic = ["version"]
description = "Abacus agent"
requires-python = ">=3.11"
dependencies = [
"abacustest>=0.4.50",
"numpy<2.0",
"pymatgen>=2025.5.28",
"bohr-agent-sdk==0.1.121",
"bohrium-sdk==0.13.0",
"dpdata>=0.2.24",
"regex==2024.11.6",
"pyatb==1.1.1"
]
[project.scripts]
abacusagent = "abacusagent.main:main"
[tool.setuptools]
package-dir = { "abacusagent" = "src/abacusagent" }
[tool.setuptools.dynamic]
version = { attr = "abacusagent.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["abacusagent*"]
exclude = ["tests*", "docs*", "examples*"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
addopts = "-v"
[project.optional-dependencies]
dev = ["mcp>=1.10.0",
"abacustest>=0.4.49",
"science-agent-sdk"
]