Spaces:
Running
Running
add pyproject.toml
Browse files- atomind_mlip/__init__.py +0 -0
- pyproject.toml +34 -0
atomind_mlip/__init__.py
ADDED
File without changes
|
pyproject.toml
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[build-system]
|
2 |
+
requires=["flit_core >=3.2,<4"]
|
3 |
+
build-backend="flit_core.buildapi"
|
4 |
+
|
5 |
+
[project]
|
6 |
+
name="atomind_mlip"
|
7 |
+
version="0.0.1"
|
8 |
+
authors=[
|
9 |
+
{name="Yuan Chiang", email="cyrusyc@lbl.gov"},
|
10 |
+
]
|
11 |
+
description=""
|
12 |
+
readme="README.md"
|
13 |
+
requires-python=">=3.8"
|
14 |
+
keywords=[
|
15 |
+
"pytorch",
|
16 |
+
"machine-learning-interatomic-potentials",
|
17 |
+
"huggingface",
|
18 |
+
"deep-learning",
|
19 |
+
"graph-neural-networks",
|
20 |
+
]
|
21 |
+
classifiers=[
|
22 |
+
"Development Status :: 1 - Planning",
|
23 |
+
"Programming Language :: Python",
|
24 |
+
"Programming Language :: Python :: 3.11",
|
25 |
+
"Programming Language :: Python :: 3.12",
|
26 |
+
"Programming Language :: Python :: 3 :: Only",
|
27 |
+
]
|
28 |
+
dependencies=[
|
29 |
+
"torch",
|
30 |
+
]
|
31 |
+
|
32 |
+
[project.urls]
|
33 |
+
Homepage = "https://github.com/atomind-ai/mlip-arena"
|
34 |
+
Issues = "https://github.com/atomind-ai/mlip-arena/issues"
|