-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tensorpotential"
version = "0.4.5" #### UPD in setup.py to avoid confusion
authors = [
{ name = "Anton Bochkarev", email = "[email protected]" },
{ name = "Yury Lysogorskiy", email = "[email protected]" },
]
description = "Graph Atomic Cluster Expansion (GRACE)"
readme = "README.md"
requires-python = "<3.12" # Update if needed
license = { text = "Academic Software License (ASL)" }
classifiers = [
"License :: OSI Approved :: Academic Free License (AFL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"scipy",
"tensorflow<2.17",
"matscipy",
"numpy",
"sympy",
"pandas<3.0.0",
"ase",
"pyyaml>=6.0.2",
"tqdm",
]
[project.urls]
"Homepage" = "https://github.com/ICAMS/grace-tensorpotential"
#[project.scripts]
#gracemaker = "bin:gracemaker"
#grace_models = "bin:grace_models"
#grace_collect = "bin:grace_collect"
#extxyz2df = "bin:extxyz2df"
#df2extxyz = "bin:df2extxyz"
#grace_preprocess = "bin:grace_preprocess"