-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.01 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
[project]
description = "Graph Neural Network to predict the reaction related properties for reinforcement learning"
name = "rgnn"
readme = "README.md"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"numpy>=1.22.4",
"scipy>=1.7.1",
"sympy>=1.8",
"matplotlib>=3.4.3",
"ase>=3.22.1",
"torch>=1.11.0",
"networkx>=2.7.1",
"pymatgen>=2022.5.26",
"torch>=1.12.0",
"torchdata>=0.6.0",
"torch-geometric>=2.3",
"torch_sparse",
"inflection",
"torch_scatter",
"torch_cluster",
"e3nn==0.4.4",
"torch-ema",
"rich",
"tensorboard",
"matscipy",
]
dynamic = ["version"]
license = {text = "MIT"}
requires-python = ">=3.9,<3.12"
[project.optional-dependencies]
dev = ["flake8", "black", "isort", "jupyter", "pytest"]
[tool.setuptools.packages.find]
exclude = ["dev"]
include = ["rgnn"]
[tool.setuptools.dynamic]
version = {attr = "rgnn.__version__"}
[tool.black]
line-length = 120
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]