-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
95 lines (79 loc) · 2.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2016--, gneiss development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
import re
import ast
import os
from setuptools import find_packages, setup
from setuptools.command.build_ext import build_ext as _build_ext
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
# Dealing with Cython
USE_CYTHON = os.environ.get('USE_CYTHON', False)
ext = '.pyx' if USE_CYTHON else '.c'
extensions = [
]
if USE_CYTHON:
from Cython.Build import cythonize
extensions = cythonize(extensions)
classes = """
Development Status :: 4 - Beta
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
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('Compositional data analysis tools and visualizations')
with open('README.md') as f:
long_description = f.read()
# version parsing from __init__ pulled from Flask's setup.py
# https://github.com/mitsuhiko/flask/blob/master/setup.py
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('gneiss/__init__.py', 'rb') as f:
hit = _version_re.search(f.read().decode('utf-8')).group(1)
version = str(ast.literal_eval(hit))
setup(name='gneiss',
version=version,
license='BSD',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author="gneiss development team",
author_email="[email protected]",
maintainer="gneiss development team",
maintainer_email="[email protected]",
packages=find_packages(),
setup_requires=['numpy >= 1.15.3'],
ext_modules=extensions,
cmdclass={'build_ext': build_ext},
install_requires=[
'IPython >= 3.2.0',
'matplotlib >= 1.4.3',
'numpy >= 1.15.3',
'pandas >= 0.18.0',
'scipy >= 0.15.1',
'nose >= 1.3.7',
'scikit-bio >= 0.5.5',
'statsmodels>=0.8.0',
'biom-format',
'seaborn',
'bokeh==1.1.0'
],
classifiers=classifiers,
package_data={})