forked from biocore/emperor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (62 loc) · 2.56 KB
/
setup.py
File metadata and controls
70 lines (62 loc) · 2.56 KB
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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, emperor development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE.md, distributed with this software.
# ----------------------------------------------------------------------------
from distutils.core import setup
from glob import glob
__version__ = "0.9.51-dev"
__maintainer__ = "Emperor development team"
__email__ = "yoshiki89@gmail.com"
# based on the text found in github.com/qiime/pynast
classes = """
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: User Interfaces
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
long_description = """Emperor: a tool for visualizing high-throughput microbial community data
EMPeror: a tool for visualizing high-throughput microbial community data.
Vazquez-Baeza Y, Pirrung M, Gonzalez A, Knight R.
Gigascience. 2013 Nov 26;2(1):16.
"""
base = {"numpy >= 1.7", "qcli", "scikit-bio >= 0.2.1, < 0.3.0"}
doc = {"Sphinx >= 1.2.2", "sphinx-bootstrap-theme"}
test = {"nose >= 0.10.1", "pep8", "flake8"}
all_deps = base | doc | test
setup(
name='emperor',
version=__version__,
description='Emperor',
author="Antonio Gonzalez Pena, Meg Pirrung & Yoshiki Vazquez Baeza",
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url='http://github.com/biocore/emperor',
packages=['emperor', 'emperor/qiime_backports'],
scripts=glob('scripts/*py'),
package_data={
'emperor': ['support_files/vendor/js/three.js-plugins/*.js',
'support_files/vendor/js/*.js',
'support_files/vendor/css/*.css',
'support_files/vendor/css/*.png',
'support_files/vendor/css/images/*.png',
'support_files/img/*.png',
'support_files/img/*.ico',
'support_files/css/*.css',
'support_files/js/*.js']},
data_files={},
install_requires=base,
extras_require={'doc': doc, 'test': test, 'all': all_deps},
long_description=long_description,
classifiers=classifiers)