-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (22 loc) · 967 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
from setuptools import setup, find_packages
setup_params = dict(name='ampligraph',
version='0.9',
description='ExCut: A Python library for Explainable Entity Clustering',
url='https://github.com/mhmgad/ExCut',
author='Mohamed Gad-Elrab',
author_email='gadelrab@mpi-inf.mpg.de',
license='Apache 2.0',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
zip_safe=False,
install_requires=[
"scikit-learn",
"tqdm",
"pandas",
"sparqlwrapper",
"rdflib=4.2.2",
"matplotlib",
"tensorflow=1.13.1",
"keras",
"ampligraph==1.3.0"
])