-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·26 lines (24 loc) · 949 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
#!/usr/bin/env python3
from distutils.core import setup
from setuptools import find_packages
setup(name='ontario',
version='0.3',
description='Ontario - Ontology-based architecture for semantic data lakes',
author='Kemele M. Endris',
author_email='[email protected]',
url='https://github.com/SDM-TIB/Ontario',
scripts=['scripts/runExperiment.py', 'run_query.py', 'scripts/runOntarioExp.sh', 'scripts/run_dief_experiment.py'],
packages=find_packages(exclude=['docs']),
install_requires=["ply",
"flask",
"requests",
'hdfs',
'pyspark',
'pymongo',
'mysql-connector-python',
'neo4j-driver',
'rdflib',
'networkx'],
include_package_data=True,
license='GNU/GPL v2'
)