-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 991 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
from setuptools import setup, find_packages
setup(
name='viveur',
version='0.1.0',
author='Jasper Op de Coul',
author_email='[email protected]',
url='http://eur.nl/ul',
description="Erasmus University VIVO Configuration",
classifiers=["Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment"],
packages=find_packages(),
include_package_data = True,
zip_safe=False,
license='BSD',
entry_points= {
'console_scripts': [
'metis_dumper = viveur.tools:metis_dumper',
'vivo_ingester = viveur.tools:vivo_ingester',
'drop_vivo_tables = viveur.tools:drop_vivo_tables'
],
},
install_requires=[
'cx_Oracle',
'sqlalchemy',
'lxml',
'jnius'
],
)