-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
25 lines (22 loc) · 926 Bytes
/
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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2014--, tax-credit 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 setuptools import find_packages, setup
setup(
name='tax-credit',
version='0.0.0-dev',
license='BSD-3-Clause',
packages=find_packages('tax_credit'),
install_requires=['biom-format', 'pandas', 'statsmodels', 'bokeh',
'scipy', 'jupyter', 'scikit-bio', 'seaborn',
'scikit-learn', 'joblib'],
author="Nicholas Bokulich",
author_email="[email protected]",
description="Systematic benchmarking of taxonomic classification methods",
url="https://github.com/caporaso-lab/tax-credit"
)