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
|
import re
import sys
import platform
if sys.version_info[:3] < (3, 6, 1):
sys.exit("""\
****************************************************************************
* bitarray requires Python 3.6.1 or later.
* The last version supporting Python 2 is bitarray 2.9.3.
****************************************************************************
""")
if "test" in sys.argv:
import bitarray
# when test was successful, return 0 (hence not)
sys.exit(not bitarray.test().wasSuccessful())
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
kwds = {}
kwds['long_description'] = open('README.rst').read()
# Read version from bitarray/bitarray.h
pat = re.compile(r'#define\s+BITARRAY_VERSION\s+"(\S+)"', re.M)
data = open('bitarray/bitarray.h').read()
kwds['version'] = pat.search(data).group(1)
macros = []
if platform.python_implementation() == 'PyPy':
macros.append(("PY_LITTLE_ENDIAN", str(int(sys.byteorder == 'little'))))
macros.append(("PY_BIG_ENDIAN", str(int(sys.byteorder == 'big'))))
setup(
name = "bitarray",
author = "Ilan Schnell",
author_email = "ilanschnell@gmail.com",
url = "https://github.com/ilanschnell/bitarray",
license = "PSF-2.0",
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
],
description = "efficient arrays of booleans -- C extension",
packages = ["bitarray"],
package_data = {"bitarray": ["*.h", "*.pickle",
"py.typed", # see PEP 561
"*.pyi"]},
ext_modules = [Extension(name = "bitarray._bitarray",
define_macros = macros,
sources = ["bitarray/_bitarray.c"]),
Extension(name = "bitarray._util",
sources = ["bitarray/_util.c"])],
zip_safe = False,
**kwds
)
|