forked from Accenture/AmpliGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.66 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
# Copyright 2019-2021 The AmpliGraph Authors. All Rights Reserved.
#
# This file is Licensed under the Apache License, Version 2.0.
# A copy of the Licence is available in LICENCE, or at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
from setuptools import setup, find_packages
from ampligraph import __version__ as version
setup_params = dict(name='ampligraph',
version=version,
description='A Python library for relational learning on knowledge graphs.',
url='https://github.com/Accenture/AmpliGraph/',
author='Accenture Dublin Labs',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
zip_safe=False,
install_requires=[
'numpy>=1.14.3',
'pytest>=3.5.1',
'scikit-learn>=0.19.1',
'tqdm>=4.23.4',
'pandas>=0.23.1',
'sphinx>=2.2, < 3',
'recommonmark==0.4.0',
'sphinx_rtd_theme==0.4.3',
'sphinxcontrib-bibtex==0.4.2',
'beautifultable>=0.7.0',
'pyyaml>=3.13',
'rdflib>=4.2.2',
'scipy>=1.3.0',
'networkx>=2.3',
'flake8>=3.7.7',
'setuptools>=36'
])
if __name__ == '__main__':
setup(**setup_params)