-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (46 loc) · 1.98 KB
/
setup.py
File metadata and controls
52 lines (46 loc) · 1.98 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
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# This work is licensed under the Creative Commons
# Attribution-NonCommercial-ShareAlike 4.0 International License. To view a
# copy of this license, visit
# http://creativecommons.org/licenses/by-nc-sa/4.0/.
# -----------------------------------------------------------------------------
__version__ = '0.1.0-dev'
from setuptools import find_packages, setup
classes = """
Development Status :: 1 - Planning
Framework :: IPython
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 2.7
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ("An Introduction To Applied Bioinformatics (IAB): "
"Interactive lessions in bioinformatics.")
setup(name='An-Introduction-To-Applied-Bioinformatics',
version=__version__,
license='CC BY-NC-SA 4.0',
description=description,
long_description=description,
author='Greg Caporaso',
author_email='gregcaporaso@gmail.com',
maintainer='Greg Caporaso',
maintainer_email='gregcaporaso@gmail.com',
url='http://caporasolab.us/An-Introduction-To-Applied-Bioinformatics',
packages=find_packages(),
install_requires=['scikit-bio >= 0.2.3, < 0.3.0',
'ipython[all] >= 3.0.0, < 4.0.0',
'runipy', 'seaborn >= 0.5.1, < 0.6.0',
'qiime-default-reference >= 0.1.1, < 0.2.0',
'pandas >= 0.15.0, < 0.16.0',
'markdown2 >= 2.3.0',
'networkx >= 1.9.1, < 2.0.0'],
classifiers=classifiers)