-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.79 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (42 loc) · 1.79 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
#!/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.0.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.1.4', 'ipython', 'tornado',
'pyzmq', 'jinja2', 'nose', 'runipy',
'biom-format < 2.0.0', 'pyqi', 'pandas', 'future'],
classifiers=classifiers)