-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
37 lines (33 loc) · 1.35 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
from setuptools import setup
from setuptools import find_packages
import os
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='matdgl',
version='0.0.4',
description='Graph Neural Networks for machine learning of materials.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Zongxiang Hu',
author_email='[email protected]',
download_url='https://github.com/huzongxiang/MatDGL/tree/main/matdgl',
license='BSD',
install_requires=['numpy', "scikit-learn"],
packages=find_packages(),
package_data={
"matdgl": ["data/*.json", "models/model/*.hdf5", "*.png"],
},
include_package_data=True,
keywords=["materials", "science", "machine", "learning", "deep", "graph", "networks", "neural", "transformer", "massagepassing"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)