-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (34 loc) · 1.11 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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2022--, katharoseq 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-katharoseq",
packages=find_packages(),
version=versioneer.get_version(),
#version='1.0.0',
cmdclass=versioneer.get_cmdclass(),
author="Daniela Perry",
author_email="[email protected]",
description="katharo seq protocol for low biomass samles",
license='BSD-3',
entry_points={
'qiime2.plugins': ['q2-katharoseq=q2_katharoseq.plugin_setup:plugin']
},
package_data={
"q2_katharoseq": ['citations.bib'],
"example": ['*']
},
zip_safe=False,
install_requires=['scipy',
'scikit-learn',
'matplotlib',
'seaborn',
'pandas']
)