-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
53 lines (46 loc) · 1.78 KB
/
setup.py
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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2015--, platypus development team.
#
# Distributed under the terms of the BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
from distutils.core import setup
classes = """
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries :: Application Frameworks
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ("Platypus Conquistador: Confirming specific taxonomic "
"groups within your metagenomic samples.")
with open('README.rst') as f:
long_description = f.read()
base = {"click", "scikit-bio >= 0.2.1, < 0.3.0"}
test = {"nose >= 0.10.1", "pep8", "flake8"}
all_deps = base | test
setup(name='platypus-conquistador',
version='0.9.0-dev',
description=description,
author='Antonio Gonzalez Pena',
author_email='[email protected]',
maintainer='Antonio Gonzalez Pena',
maintainer_email='[email protected]',
url='http://github.com/biocore/platypus',
license='BSD',
packages=['platypus'],
scripts=['scripts/platypus'],
install_requires=base,
extras_require={'test': test, 'all': all_deps},
package_data={},
data_files={},
long_description=long_description,
classifiers=classifiers)