-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 733 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from setuptools import find_packages
setup(name='gae',
version='0.0.1',
description='Implementation of (Variational) Graph Auto-Encoders in Tensorflow',
author='Thomas Kipf',
author_email='thomas.kipf@gmail.com',
url='https://tkipf.github.io',
download_url='https://github.com/tkipf/gae',
license='MIT',
install_requires=['numpy',
'tensorflow',
'networkx',
'scikit-learn',
'scipy',
],
extras_require={
'visualization': ['matplotlib'],
},
package_data={'gae': ['README.md']},
packages=find_packages())