-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
96 lines (87 loc) · 2.17 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
90
91
92
93
94
95
96
[build-system]
requires = [
"Cython>=0.29.32",
"numpy<2",
"setuptools>=45",
"setuptools_scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "mattersim"
dynamic = ["version"]
description = "MatterSim: A Deep Learning Atomistic Model Across Elements, Temperatures and Pressures."
authors = [
{ name = "Han Yang", email = "[email protected]" },
{ name = "Hongxia Hao", email = "[email protected]" },
{ name = "Jielan Li", email = "[email protected]" },
{ name = "Ziheng Lu", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"ase>=3.23.0",
"azure-identity",
"azure-storage-blob",
"scikit-learn",
"deprecated",
"e3nn>=0.5.0",
"atomate2",
"emmet-core>=0.84; python_version >= '3.10'",
"emmet-core<0.84; python_version < '3.10'",
"loguru",
"mp-api",
"numpy<2",
"opt_einsum_fx",
"pydantic>=2.9.2",
"pymatgen",
"seekpath",
"torch-ema>=0.3",
"torch>=2.2.0",
"torch_geometric>=2.5.3",
"torch_runstats>=0.2.0",
"torchaudio>=2.2.0",
"torchmetrics>=0.10.0",
"torchvision>=0.17.0",
]
[project.optional-dependencies]
dev = [
"ipykernel",
"ipython",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-testmon",
]
docs = [
"nbconvert",
"nbsphinx",
"recommonmark",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx_book_theme",
]
[project.urls]
"Homepage" = "https://github.com/microsoft/mattersim"
"Bug Tracker" = "https://github.com/microsoft/mattersim/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["mattersim", "mattersim.*"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[tool.cibuildwheel]
# Limit the build to Python 3.9
build = "cp39-*"
# Limit the build to manylinux
manylinux-x86_64-image = "manylinux2014"
# Include pure Python (none) wheels
skip = "pp*,cp3{6,7,8,10,11}-*,*win*,*macos*"