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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, BP development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
import os
from setuptools import setup
from setuptools.extension import Extension
from setuptools.command.build_py import build_py
from setuptools.command.install import install
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
import versioneer
import subprocess
import numpy as np
classes = """
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Operating System :: Linux
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
with open('README.md') as f:
long_description = f.read()
curdir = os.path.abspath(__file__).rsplit('/', 1)[0]
bitarr = os.path.join(curdir, 'bp/BitArray')
class common:
def build_bitarray(self):
subprocess.run(['make', '-C', bitarr, 'libbitarr.a'])
class BitArrayBuild(build_py, common):
def run(self):
self.build_bitarray()
build_py.run(self)
class BitArrayInstall(install, common):
def run(self):
self.build_bitarray()
install.run(self)
class BitArrayDevelop(develop, common):
def run(self):
self.build_bitarray()
develop.run(self)
class BitArrayEggInfo(egg_info, common):
def run(self):
self.build_bitarray()
egg_info.run(self)
USE_CYTHON = os.environ.get('USE_CYTHON', True)
ext = '.pyx' if USE_CYTHON else '.c'
extensions = [Extension("bp._bp",
["bp/_bp" + ext],
include_dirs=[bitarr],
library_dirs=[bitarr],
libraries=['bitarr']),
Extension("bp._io",
["bp/_io" + ext], ),
Extension("bp._conv",
["bp/_conv" + ext], ),
Extension("bp._binary_tree",
["bp/_binary_tree" + ext], ),
Extension("bp._insert",
["bp/_insert" + ext], ),
Extension("bp.tests.test_bp_cy",
["bp/tests/test_bp_cy" + ext],
include_dirs=['bp/BitArray/'],
library_dirs=['bp/BitArray/'],
libraries=['bitarr']),
]
extensions.extend([Extension("bp._ba",
["bp/_ba" + ext],
include_dirs=['bp/BitArray/'],
library_dirs=['bp/BitArray/'],
libraries=['bitarr'])])
if USE_CYTHON:
from Cython.Build import cythonize
extensions = cythonize(extensions,
language_level=3)
setup(name='iow',
version=versioneer.get_version(),
description='Balanced parentheses',
author='Daniel McDonald',
author_email='damcdonald@ucsd.edu',
maintainer='Daniel McDonald',
maintainer_email='damcdonald@ucsd.edu',
url='https://github.com/biocore/improved-octo-waddle',
packages=['bp'],
ext_modules=extensions,
include_dirs=[np.get_include(), bitarr],
setup_requires=['numpy >= 1.9.2'],
package_data={'bp': ['BitArray/*', ]},
install_requires=[
'numpy >= 1.9.2',
'pandas',
'click',
'scikit-bio >= 0.5.0'],
long_description=long_description,
long_description_content_type='text/markdown',
cmdclass=versioneer.get_cmdclass({'build_py': BitArrayBuild,
'install': BitArrayInstall,
'develop': BitArrayDevelop,
'egg_info': BitArrayEggInfo}),
entry_points='''
[console_scripts]
bp=bp._cli:cli
''')
|