-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (33 loc) · 877 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
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='q2-anomaly-detection',
version='0.0.1',
description='Anomaly detection for microbiome data',
long_description=open('README.md').read(),
license='LICENSE',
author='George Armstrong',
author_email='[email protected]',
url='https://github.com/gwarmstrong/q2-anomaly-detection',
packages=find_packages(),
install_requires=[
'numpy',
'scikit-learn>=0.24',
'biom-format',
'matplotlib',
'seaborn',
'scipy',
'pandas',
'unifrac',
],
extras_require={
'analysis': [
'jupyter',
],
'dev': [
'flake8',
],
'test': [
'nose',
]
}
)