-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
22 lines (21 loc) · 902 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
import setuptools
setuptools.setup(
name='GaAN',
version="0.1.dev0",
author="Jiani Zhang, Xingjian Shi",
author_email="[email protected], [email protected]",
packages=setuptools.find_packages(),
description='GluonGraph',
long_description=open(os.path.join(os.path.dirname(
os.path.abspath(__file__)), 'README.md')).read(),
license='MIT',
url='https://github.com/sxjscience/MXGraph',
install_requires=['numpy', 'scipy', 'matplotlib', 'six', 'pyyaml', 'networkx', 'sklearn', 'pandas'],
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
)