forked from tkipf/relational-gcn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 655 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from setuptools import find_packages
setup(name='rgcn',
version='0.0.1',
description='Graph Convolutional Networks for (directed) relational graphs',
download_url='...',
license='MIT',
install_requires=['numpy',
'theano',
'keras',
'rdflib',
'scipy',
'pandas',
'wget'
],
extras_require={
'model_saving': ['h5py'],
},
package_data={'rgcn': ['README.md', 'rgcn/data']},
packages=find_packages())