-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
89 lines (82 loc) · 1.98 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
84
85
86
87
88
89
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0"]
[project]
authors = [
{"name" = "Intel Corporation", "email" = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"psutil",
"lightning>=2.4.0",
"dgl>=2.0.0",
"dgllife==0.3.2",
"rdkit==2023.9.5",
"numba>=0.55.0",
"numpy>=1.21.0, < 2.0.0", # not all packages have migrated to >2.0 yet
"matplotlib",
"munch>=2.5.0",
"lmdb==1.4.1",
"geometric-algebra-attention>=0.3.0",
"sympy>=1.10.1",
"jsonargparse[signatures]>=4.27.7",
"mp_api==0.41.2",
"emmet-core==0.83.6",
"pymatgen==2024.3.1",
"schema>=0.7.5",
"ase>=3.22.1",
"matgl==1.1.3",
"einops>=0.8.0",
"mendeleev>=0.17.0",
"e3nn",
"mace-torch==0.3.6",
"monty==2024.2.2",
"loguru"
]
description = "PyTorch Lightning and Deep Graph Library enabled materials science deep learning pipeline"
dynamic = ["version", "readme"]
keywords = ["performance", "portability"]
license = {file = "LICENSE.md"}
name = "matsciml"
requires-python = ">=3.9"
[project.scripts]
lmdb_cli = "matsciml.datasets.lmdb_cli:main"
[project.optional-dependencies]
all = [
"matsciml[dev,symmetry,pyg]",
]
dev = [
"ruff==0.4.0",
"pre-commit",
"sphinx==7.2.6",
"sphinx-theme-pd==0.8.3",
"sphinxawesome-theme",
"pytest",
"pytest-pretty",
"pytest-dependency"
]
pyg = [
"torch_geometric==2.4.0",
"torch_scatter==2.1.2",
"torch_sparse==0.6.18",
"pybind11"
]
symmetry = [
"rowan==1.3.0.post1",
]
[tool.setuptools.packages.find]
include = ["matsciml*", "experiments*"]
where = ["."]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
version = {attr = "matsciml.__version__"}
[tool.ruff.lint]
ignore = ["F403", "F405"]
[tool.pytest.ini_options]
filterwarnings = ["ignore::UserWarning", "ignore::DeprecationWarning"]