forked from materialsvirtuallab/matgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (59 loc) · 1.91 KB
/
setup.py
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
from __future__ import annotations
import os
from setuptools import find_packages, setup
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="matgl",
version="0.8.5",
author="Tsz Wai Ko, Marcel Nassar, Ji Qi, Santiago Miret, Eliott Liu, Shyue Ping Ong",
author_email="[email protected], [email protected]",
maintainer="Shyue Ping Ong",
maintainer_email="[email protected]",
description="MatGL (Materials Graph Library) is a framework for graph deep learning for materials science.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"materials",
"interatomic potential",
"force field",
"science",
"property prediction",
"AI",
"machine learning",
"graph",
"deep learning",
],
packages=find_packages(),
package_data={
"matgl": ["*.json", "*.md"],
"matgl.utils": ["*.npy"],
},
install_requires=(
"ase",
"dgl",
"pymatgen",
"pytorch_lightning",
"torch",
),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={
"console_scripts": [
"mgl = matgl.cli:main",
]
},
)