forked from picrust/picrust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (51 loc) · 1.84 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
54
55
56
57
58
59
#!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
from os.path import join, split
from os import getcwd
from glob import glob
__author__ = "Greg Caporaso"
__copyright__ = "Copyright 2011-2013, The PICRUSt Project"
__credits__ = ["Greg Caporaso", "Daniel McDonald", "Jose Clemente"]
__license__ = "GPL"
__version__ = "0.9.2-dev"
__maintainer__ = "Greg Caporaso"
__email__ = "gregcaporaso@gmail.com"
__status__ = "Development"
try:
import numpy
except ImportError:
raise ImportError, \
("biom cannot be found. Can't continue. Please install "
"the numpy package (see www.numpy.org)")
try:
import biom
except ImportError:
raise ImportError, \
("biom cannot be found. Can't continue. Please install "
"the biom package (see www.biom-format.org)")
try:
import cogent
except ImportError:
raise ImportError, \
("PyCogent cannot be found. Can't continue. Please install "
"the PyCogent package (see www.pycogent.org).")
long_description = """PICRUSt: Phylogenetic Investigation of Communities by Reconstruction of Unobserved States
http://picrust.github.com
Manuscript in preparation. Please cite PICRUSt as http://picrust.github.com until publication.
"""
setup(name='PICRUSt',
version=__version__,
description='PICRUSt: Phylogenetic Investigation of Communities by Reconstruction of Unobserved States',
author=__maintainer__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url='http://picrust.github.com',
packages=['picrust'],
scripts=glob('scripts/*py'),
package_data={'picrust':
['data/*gz',
'support_files/jar/Count.jar',
'support_files/R/ace.R']},
long_description=long_description)