forked from caporaso-lab/sourcetracker2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (45 loc) · 1.64 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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, Biota Technology.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import find_packages, setup
__version__ = '2.0.1-dev'
classes = """
Development Status :: 1 - Planning
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3.5
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = "Python implementation of the SourceTracker R package."
setup(
name='sourcetracker',
version=__version__,
license='modified BSD',
description=description,
long_description=description,
author='Biota Technology',
author_email='[email protected]',
maintainer='Will Van Treuren',
maintainer_email='[email protected]',
url='http://www.biota.com',
test_suite='nose.collector',
packages=find_packages(),
install_requires=['numpy', 'h5py', 'biom-format >= 2.1.5, < 2.2.0',
'click', 'ipyparallel', 'scikit-bio', 'pandas',
'scipy >= 0.18.0', 'seaborn'],
classifiers=classifiers,
entry_points='''
[console_scripts]
sourcetracker2=sourcetracker._cli:cli
''')