forked from qiita-spots/qiita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
120 lines (113 loc) · 5 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#!/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.2.0-dev"
classes = """
Development Status :: 3 - Alpha
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 :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
with open('README.rst') as f:
long_description = f.read()
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='qiita-spots',
version=__version__,
long_description=long_description,
license="BSD",
description='Qiita: Spot Patterns',
author="Qiita development team",
author_email="[email protected]",
url='https://github.com/biocore/qiita',
test_suite='nose.collector',
packages=['qiita_core',
'qiita_db',
'qiita_db/handlers',
'qiita_db/metadata_template',
'qiita_pet',
'qiita_pet/uimodules',
'qiita_pet/handlers',
'qiita_pet/handlers/study_handlers',
'qiita_pet/handlers/api_proxy',
'qiita_ware'
],
include_package_data=True,
package_data={
'qiita_core': [
'support_files/config_test.cfg'
'support_files/server.crt',
'support_files/server.csr',
'support_files/server.key'
],
'qiita_db': [
'support_files/*.sql',
'support_files/patches/*.sql',
'support_files/patches/python_patches/*.py',
'support_files/test_data/preprocessed_data/*',
'support_files/test_data/processed_data/*',
'support_files/test_data/raw_data/*',
'support_files/test_data/analysis/*',
'support_files/test_data/reference/*',
'support_files/test_data/job/*.txt',
'support_files/test_data/job/2_test_folder/*',
'support_files/test_data/uploads/1/a_folder/*.txt',
'support_files/test_data/uploads/1/.hidden_file.txt',
'support_files/test_data/uploads/1/uploaded_file.txt',
'support_files/test_data/templates/*',
'support_files/work_data/*'],
'qiita_pet': [
'static/css/*.css', 'static/img/*.png',
'static/img/*.gif', 'static/img/*.ico',
'static/js/*.js', 'static/vendor/css/*.css',
'static/vendor/css/images/*.png',
'static/vendor/css/*.png',
'static/vendor/fonts/glyphicons*.*',
'static/vendor/images/*.png',
'static/vendor/js/*.js',
'results/admin/jobname/*.html',
'templates/*.html',
'templates/study_description_templates/*.html',
'support_files/config_portal.cfg',
'support_files/doc/Makefile',
'support_files/doc/README.md',
'support_files/doc/source/conf.py',
'support_files/doc/source/*.rst',
'support_files/doc/source/tutorials/*.rst',
'support_files/doc/source/admin/*.rst',
'support_files/doc/source/dev/*.rst',
'support_files/doc/source/qiita-philosophy/*.rst',
'support_files/doc/source/admin/images/*.png',
'support_files/doc/source/tutorials/images/*.png',
'support_files/doc/source/qiita-philosophy/images/*.png',
'support_files/doc/source/_static/*.png'
]},
scripts=glob('scripts/*'),
extras_require={'test': ["nose >= 0.10.1", "pep8", 'mock']},
install_requires=['psycopg2 < 2.7', 'click >= 3.3', 'future',
'bcrypt', 'pandas >= 0.17', 'numpy >= 1.7',
'tornado==3.1.1', 'toredis', 'redis', 'six',
'pyparsing', 'h5py >= 2.3.1', 'biom-format',
'natsort', 'networkx < 2.0',
'scikit-bio == 0.4.2', 'wtforms == 2.0.1',
'sphinx-bootstrap-theme', 'Sphinx >= 1.2.2',
'gitpython', 'qiita-files', 'redbiom==0.1.0-dev'],
dependency_links=[
'https://github.com/qiita-spots/qiita-files/archive/master.zip#'
'egg=qiita-files-0.1.0-dev',
'https://github.com/biocore/redbiom/archive/master.zip#'
'egg=redbiom-0.1.0-dev'],
classifiers=classifiers
)