-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
78 lines (71 loc) · 2.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# Copyright (c) 2013, The Qiita Development Team.
#
# Distributed under the terms of the BSD 3-clause License.
#
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------
from setuptools import setup
from glob import glob
__version__ = "0.1.0-dev"
classes = """
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
long_description = """American Gut participant UI"""
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='American Gut participant UI',
version=__version__,
long_description=long_description,
license="BSD",
description='American Gut Project',
author="American Gut Project",
author_email="[email protected]",
url='http://www.microbio.me/AmericanGut',
test_suite='nose.collector',
packages=['amgut'],
package_data={'amgut': [
'static/css/*.css', 'static/img/*.*', 'static/js/*.js',
'static/vendor/css/*.css', 'static/vendor/css/*.png',
'amgut/static/vendor/css/ui-lightness/*.css',
'amgut/static/vendor/css/ui-lightness/images/*.png',
'static/vendor/data/*', 'static/vendor/js/*.js',
'static/vendor/licences/*', 'db/*.*', 'db/patches/*.sql',
'handlers/*', 'lib/*.*', 'lib/data_access/*.*',
'lib/data_access/test/*', 'lib/locale_data/*',
'templates/*.html', 'test/*.py'
]},
scripts=glob('scripts/*'),
extras_require={
'test': [
'mock',
'nose >= 0.10.1',
'pep8',
'flake8'
]
},
install_requires=[
'click==3.3',
'future==0.13.1',
'open-humans-tornado-oauth2==2.1.0',
'psycopg2==2.7.4',
'pycrypto==2.6.1',
'bcrypt',
'redis',
'requests',
'tornado==4.4.2',
'WTForms==2.0.1',
'natsort',
'pandas'
],
classifiers=classifiers)