-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 901 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
'''
@file: setup.py.py
@author: qxliu
@time: 2020/5/25 19:51
'''
import os
import setuptools
MODULE = 'iESBM'
VERSION = '1.0'
PACKAGES = setuptools.find_packages(where='code')
META_PATH = os.path.join('code', MODULE, '__init__.py')
KEYWORDS = ['Knowledge Graph', 'Entity summarization', 'Benchmarking']
INSTALL_REQUIRES = ['numpy', 'scipy']
if __name__ == '__main__':
setuptools.setup(
name=MODULE,
version=VERSION,
description='A package for embedding-based entity alignment',
url='https://github.com/nju-websoft/iESBM.git',
author='Qingxia Liu',
author_email='[email protected]',
maintainer='Qingxia Liu',
maintainer_email='[email protected]',
license='ODC Attribution License (ODC-By)',
keywords=KEYWORDS,
packages=setuptools.find_packages(where='code'),
package_dir={'': 'code'},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
zip_safe=False,
)