forked from nju-websoft/OpenEA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.03 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
"""Setup.py for OpenEA."""
import os
import setuptools
MODULE = 'openea'
VERSION = '1.0'
PACKAGES = setuptools.find_packages(where='src')
META_PATH = os.path.join('src', MODULE, '__init__.py')
KEYWORDS = ['Knowledge Graph', 'Embeddings', 'Entity Alignment']
INSTALL_REQUIRES = [
# 'tensorflow',
'pandas==0.24.2',
'matching==0.1.1',
'scikit-learn',
'numpy',
'gensim',
'python-Levenshtein',
'scipy',
]
if __name__ == '__main__':
setuptools.setup(
name=MODULE,
version=VERSION,
description='A package for embedding-based entity alignment',
url='https://github.com/nju-websoft/OpenEA.git',
author='Zequn Sun',
author_email='[email protected]',
maintainer='Zequn Sun',
maintainer_email='[email protected]',
license='MIT',
keywords=KEYWORDS,
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
zip_safe=False,
)