-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
53 lines (51 loc) · 1.66 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
# ----------------------------------------------------------------------------
# Copyright (c) 2020, mlab development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import setup, find_packages
import versioneer
setup(
name="q2-mlab",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
author="Imran McGrath",
author_email="[email protected]",
description="Machine learning benchmarking in Qiime",
license='BSD-3-Clause',
url="https://qiime2.org",
entry_points={
'qiime2.plugins': ['q2-mlab=q2_mlab.plugin_setup:plugin'],
'console_scripts': ['mlab-orchestrator=q2_mlab.orchestrator:cli',
'mlab-doctor=q2_mlab.doctor:cli',
'mlab-db=q2_mlab.db.cli:mlab_db',
'mlab-plotting=q2_mlab.plotting.app:mlab_plotting',
],
},
package_data={'q2_mlab': ['assets/index.html',
'citations.bib',
'templates/*',
'tests/data/*',
'tests/dset_test/*'
]
},
zip_safe=False,
install_requires=[
'xgboost',
'calour',
'click',
'scikit-learn',
'numpy',
'pandas',
'jinja2',
'tqdm',
'biom-format',
'lightgbm',
'sqlalchemy',
'bokeh',
'pyyaml',
]
)