-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (44 loc) · 1.48 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
from setuptools import find_packages, setup
from glob import glob
classes = """
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('QIIME2 plugin for Case-Control '
'Differential Abundance Analysis.')
setup(name='q2-matchmaker',
version='1.0.0',
license='BSD-3-Clause',
description=description,
author_email="[email protected]",
maintainer_email="[email protected]",
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'pandas',
'xarray',
'arviz',
'matplotlib',
],
entry_points={
'qiime2.plugins': ['q2-matchmaker=q2_matchmaker.plugin_setup:plugin']
},
package_data={
"q2_matchmaker": ['assets/nb_case_control.stan', 'assets/nb_case_control_single.stan'],
},
scripts=glob('scripts/*'),
classifiers=classifiers)