-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
83 lines (75 loc) · 1.9 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "care"
version = "1.0.0"
dependencies = [
"acat==1.6.8",
"ase==3.23.0",
"matplotlib==3.8.0",
"networkx==3.2",
"numpy==1.26.4",
"pandas==2.2.0",
"prettytable==3.9.0",
"pydot==2.0.0",
"mp-api==0.45.1",
"pymatgen",
"torch==2.4.0",
"torch_geometric==2.5.3",
"rdkit==2023.3.3",
"scikit_learn==1.5.1",
"scipy==1.15.1",
"setuptools==70.0.0",
"numba",
"energydiagram @ git+https://github.com/giacomomarchioro/PyEnergyDiagrams",
"rich",
"py-cpuinfo",
"psutil",
]
authors = [
{name = "Santiago Morandi", email = "smorandi@iciq.es"},
{name = "Oliver Loveday", email = "oloveday@iciq.es"},
{name = "Pol Sanz Berman", email = "psanz@iciq.es"}
]
maintainers = [
{name = "Santiago Morandi", email = "smorandi@iciq.es"},
{name = "Oliver Loveday", email = "oloveday@iciq.es"},
{name = "Pol Sanz Berman", email = "psanz@iciq.es"}
]
description = "Chemical Reaction Network generator for heterogenous catalysis on transition metal surfaces"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["heterogeneous catalysis", "chemical reaction networks", "kinetics", "machine learning"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
ocp = [
"fairchem-core==1.4.0",
]
mace = [
"mace-torch",
"torch-dftd"
]
[project.urls]
Repository = "https://github.com/LopezGroup-ICIQ/care"
[project.scripts]
"care_run" = "care.scripts.care_script:main"
"eval_crn" = "care.scripts.eval_crn:main"
"gen_crn_blueprint" = "care.scripts.gen_crn_blueprint:main"
"run_kinetic" = "care.scripts.run_kinetic:main"
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--import-mode=importlib",
"-v",
]
testpaths = [
"tests",
]
pyhtonpath = "src"