-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (38 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name = 'recast-flask-frontend',
version = '0.1.0',
description = 'new frontend for the RECAST project',
url = 'https://github.com/lukasheinrich/recast-newfrontend',
author = 'Lukas Heinrich',
author_email = '[email protected]',
packages=find_packages(),
include_package_data = True,
install_requires = [
'Flask==0.10.1',
'Flask-Login',
'Flask-SQLAlchemy',
'Flask-WTF',
'flask-api',
'click',
'pyyaml',
'celery',
'redis',
'IPython==5.1.0',
'recast-database',
'requests',
'boto3',
'elasticsearch',
'psycopg2'
],
entry_points = {
'console_scripts': [
'recast-frontend = recastfrontend.frontendcli:frontendcli',
'recast-frontend-admin = recastfrontend.admincli:admincli',
]
},
dependency_links = [
'https://github.com/recast-hep/recast-database/tarball/master#egg=recast-database-0.1.0',
'https://github.com/cbora/recast-search/tarball/master#egg=recast-search-0.1.0',
]
)