-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 716 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_packages
setup(name='pgcn',
version='1.0',
description='Planar Graph Convolutional Networks in TensorFlow',
author='Matthias Fey',
author_email='matthias.fey@tu-dortmund.de',
url='https://github.com/rusty1s/deep-learning/thesis',
download_url='https://github.com/rusty1s/pgcn',
license='MIT',
install_requires=['numpy',
'scipy',
'networkx',
'tensorflow',
'scikit-learn',
'scikit-image',
],
package_data={'pgcn': ['README.md']},
packages=find_packages())