-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
43 lines (39 loc) · 1.06 KB
/
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
37
38
39
40
41
42
43
"""Setup.py for OpenEA."""
import os
import setuptools
MODULE = 'muKG'
VERSION = '1.0'
PACKAGES = setuptools.find_packages(where='src')
META_PATH = os.path.join('src', MODULE, '__init__.py')
KEYWORDS = ['Knowledge Graph', 'Embeddings']
INSTALL_REQUIRES = [
# 'tensorflow',
'tqdm',
'joblib',
'pandas',
'matching==0.1.1',
'scipy',
'scikit-learn',
'numpy',
'gensim',
'python-Levenshtein',
'scipy',
'redis',
]
if __name__ == '__main__':
setuptools.setup(
name=MODULE,
version=VERSION,
description='An open-source Python library for representation learning over knowledge graphs.',
url='https://github.com/nju-websoft/muKG.git',
author='Zequn Sun',
author_email='[email protected]',
maintainer='Zequn Sun',
maintainer_email='[email protected]',
keywords=KEYWORDS,
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
zip_safe=False,
)