This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
57 lines (51 loc) · 2.09 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
54
55
56
57
#!/usr/bin/env python
#-----------------------------------------------------------------------------
# Copyright (c) 2013, The PyNAST Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
from __future__ import division
from distutils.core import setup
import re
__version__ = "1.2.2-dev"
# classes/classifiers code adapted from Celery and pyqi:
# https://github.com/celery/celery/blob/master/setup.py
# https://github.com/bipy/pyqi/blob/master/setup.py
#
# PyPI's list of classifiers can be found here:
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
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_despcription should be all of the information from README.md, minus
# the jenkins build status line
long_description = ''.join([line for line in open('README.md')
if not line.startswith("[![Build Status]")])
setup(name='pynast',
version=__version__,
description='The Python Nearest Alignment Space Termination tool',
author="Greg Caporaso",
author_email="[email protected]",
maintainer="Greg Caporaso",
maintainer_email="[email protected]",
url='http://qiime.org/pynast',
packages=['pynast','pynast/pycogent_backports'],
scripts=['scripts/pynast'],
long_description=long_description,
install_requires=["numpy >= 1.5.1",
"cogent >= 1.5.3"],
extras_require={'doc':"Sphinx >= 0.3"},
classifiers=classifiers
)