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
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
import sys
import os.path
version = "2.0"
SOURCES = ["acora/_acora", "acora/_cacora"]
BASEDIR = os.path.dirname(__file__)
extensions = [
Extension("acora._acora", ["acora/_acora.py"]),
Extension("acora._cacora", ["acora/_cacora.pyx"]),
]
try:
sys.argv.remove('--with-cython')
except ValueError:
USE_CYTHON = False
else:
USE_CYTHON = True
try:
sys.argv.remove('--no-compile')
except ValueError:
if not all(os.path.exists(os.path.join(BASEDIR, sfile+'.c'))
for sfile in SOURCES):
print("WARNING: Generated .c files are missing,"
" enabling Cython compilation")
USE_CYTHON = True
if USE_CYTHON:
from Cython.Build import cythonize
import Cython
print("Building with Cython %s" % Cython.__version__)
else:
def cythonize(extensions, **kwargs):
for extension in extensions:
sources = []
for sfile in extension.sources:
path, ext = os.path.splitext(sfile)
if ext in ('.pyx', '.py'):
sfile = path + '.c'
sources.append(sfile)
extension.sources[:] = sources
return extensions
extensions = cythonize(extensions, annotate=True)
else:
extensions = []
extra_options = {}
if 'setuptools' in sys.modules:
extra_options['zip_safe'] = False
extra_options['extras_require'] = {
'source': 'Cython>=0.20.1',
}
def read_readme():
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
try:
return f.read()
finally:
f.close()
setup(
name="acora",
version=version,
author="Stefan Behnel",
author_email="stefan_ml@behnel.de",
maintainer="Stefan Behnel",
maintainer_email="stefan_ml@behnel.de",
url="http://pypi.python.org/pypi/acora",
description="Fast multi-keyword search engine for text strings",
long_description=read_readme(),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Programming Language :: Cython',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: OS Independent',
'Topic :: Text Processing',
],
# extension setup
ext_modules=extensions,
packages=['acora'],
**extra_options
)
|