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
61 lines (53 loc) · 2.27 KB
/
setup.py
File metadata and controls
61 lines (53 loc) · 2.27 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
#!/usr/bin/env python
from distutils.core import setup
from glob import glob
__author__ = "Yoshiki Vazquez Baeza"
__copyright__ = "Copyright 2013, The Emperor Project"
__credits__ = ["Antonio Gonzalez Pena", "Meg Pirrung", "Yoshiki Vazquez Baeza"]
__license__ = "BSD"
__version__ = "0.9.3-dev"
__maintainer__ = "Yoshiki Vazquez Baeza"
__email__ = "yoshiki89@gmail.com"
__status__ = "Development"
# 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.
"""
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/qiime/emperor',
packages=['emperor', 'emperor/pycogent_backports',
'emperor/qiime_backports'],
scripts=glob('scripts/*py'),
package_data={'emperor':['support_files/js/*.js',
'support_files/js/js/*.js', 'support_files/js/js/ctm/*.js',
'support_files/js/js/ctm/license/*.txt',
'support_files/js/js/postprocessing/*.js',
'support_files/img/*.png', 'support_files/img/*.ico',
'support_files/css/*.css', 'support_files/css/images/*.png',
'support_files/emperor/css/*.css',
'support_files/emperor/js/*.js',]},
data_files={},
install_requires=["numpy >= 1.5.1, <=1.7.1", "qcli"],
long_description=long_description,
classifiers=classifiers)