-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (32 loc) · 821 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import find_namespace_packages, setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='mrgcn',
version='2.1',
author='Xander Wilcke',
author_email='[email protected]',
url='https://gitlab.com/wxwilcke/mrgcn',
description='Multimodal Relational Graph Convolutional Network (MR-GCN)',
license='GLP3',
include_package_data=True,
zip_safe=True,
install_requires=[
'torch',
'numpy',
'rdflib',
'scipy',
'pillow',
'deep_geometry',
'huggingface_hub',
'transformers',
'sentencepiece',
'sacremoses',
'importlib_metadata',
'tqdm',
'packaging'
],
packages=find_namespace_packages(include=['mrgcn.*']),
)