-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 959 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
34
35
from setuptools import setup, find_packages
setup(
name = 'recast-rest-api',
description = 'API for the RECAST project',
url = 'https://github.com/cbora/recast-rest-api',
author = 'Christian Bora',
author_email = '[email protected]',
packages = find_packages(),
include_package_data = True,
install_requires = [
'Flask==0.10.1',
'werkzeug==0.10.4',
'Eve==0.5.3',
'eve-sqlalchemy',
'celery',
'pyyaml',
'IPython',
'psycopg2',
'click',
'boto3',
'requests',
'recast-database'
],
entry_points = {
'console_scripts': [
'recast-api = recastrestapi.apicli:apicli',
'recast-api-admin = recastrestapi.admincli:admincli',
]
},
dependency_links = [
'https://github.com/recast-hep/recast-database/tarball/master#egg=recast-database-0.0.1',
]
)