Skip to content

Commit

Permalink
Merge pull request #142 from ElDeveloper/setup_update
Browse files Browse the repository at this point in the history
Update setup.py script
  • Loading branch information
antgonza committed Jun 28, 2013
2 parents a26930e + 83cb006 commit f0c11a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Emperor 0.9.1 (changes since Emperor 0.9.0 go here)
* The "Colors" tab now has a selector, which allows to use the arrows to move between categories.
* Default coloring scheme is discrete.
* Add color pickers for the axes and axes labels.
* Emperor now relies on QIIME 1.7.0.

*Bug Fixes*

Expand Down
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
from glob import glob

__author__ = "Yoshiki Vazquez Baeza"
__copyright__ = "Copyright 2011, The Emperor Project"
__copyright__ = "Copyright 2013, The Emperor Project"
__credits__ = ["Antonio Gonzalez Pena", "Meg Pirrung", "Yoshiki Vazquez Baeza"]
__license__ = "GPL"
__version__ = "0.0.0-dev"
__version__ = "0.9.0-dev"
__maintainer__ = "Yoshiki Vazquez Baeza"
__email__ = "yoshiki89@gmail.com"
__status__ = "Development"
Expand All @@ -30,13 +30,13 @@

# slightly modified from the biom-format setup.py script
qiime_version = tuple(map(int, qiime.__version__.replace('-dev','').split('.')))
if qiime_version < (1, 6, 0):
print ('The minimum required version of the QIIME libraries is 1.6.0 '
if qiime_version < (1, 7, 0):
print ('The minimum required version of the QIIME libraries is 1.7.0 '
'please update your version accordingly (your current version %s).' %
qiime.__version__)
exit(2)

long_description = """Emperor: the next-generation way to visualize PCoA data.
long_description = """Emperor: a tool for visualizing high-throughput microbial community data
"""

setup(name='emperor',
Expand All @@ -53,8 +53,9 @@
'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/css/*.css',
'support_files/css/images/*.png', 'support_files/emperor/css/*.css',
'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={},
long_description=long_description)
Expand Down

0 comments on commit f0c11a0

Please sign in to comment.