-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.04 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
[tool.poetry]
name = "cgcnn2"
version = "0.3.0"
description = "Crystal Graph Convolutional Neural Networks"
authors = ["Jiacheng Wang <[email protected]>"]
maintainers = ["Jiacheng Wang"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jcwang587/cgcnn2/"
repository = "https://github.com/jcwang587/cgcnn2/"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
keywords = ["python", "gnn", "vasp", "crystal"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
ase = "^3.23.0"
numpy = "*"
pandas = "*"
scikit-learn = "*"
torch = "^2.5.1"
pymatgen = "^2025.1.0"
pymatviz = "^0.15.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=8"
pytest-cov = ">=5"
[tool.poetry.scripts]
cgcnn-ft = "cgcnn2.cgcnn_ft:main"
[build-system]
requires = ["poetry-core==1.9.0"]
build-backend = "poetry.core.masonry.api"