-
Notifications
You must be signed in to change notification settings - Fork 104
/
setup.py
29 lines (25 loc) · 957 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
#!/usr/bin/env python
from setuptools import setup
from glob import glob
__license__ = "GPL"
__version__ = "2.5.3"
__maintainer__ = "Langille Lab"
long_description = ("Douglas et al. 2020. PICRUSt2 for prediction of "
"metagenome functions. Nature Biotechnology. doi: "
"10.1038/s41587-020-0548-6.")
setup(name='PICRUSt2',
version=__version__,
description=('PICRUSt: Phylogenetic Investigation of Communities by '
'Reconstruction of Unobserved States'),
maintainer=__maintainer__,
url='https://github.com/picrust/picrust2/wiki',
packages=['picrust2'],
scripts=glob('scripts/*py'),
install_requires=['numpy',
'h5py',
'joblib',
'biom-format'],
package_data={'picrust2':
['MinPath/MinPath12hmp.py',
'Rscripts/*R']},
long_description=long_description)