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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
#!/usr/bin/env python
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
import os
import re
import stat
import subprocess
import sysconfig
import textwrap
import sys
from collections import defaultdict
from functools import partial
import platform
is_cpython = platform.python_implementation() == 'CPython'
# this specifies which versions of python we support, pip >= 9 knows to skip
# versions of packages which are not compatible with the running python
PYTHON_REQUIRES = '>=3.8'
TRACKER_URL = "https://github.com/cython/cython/issues/"
if sys.platform == "darwin":
# Don't create resource files on OS X tar.
os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true'
os.environ['COPYFILE_DISABLE'] = 'true'
setup_args = {}
def add_command_class(name, cls):
cmdclasses = setup_args.get('cmdclass', {})
cmdclasses[name] = cls
setup_args['cmdclass'] = cmdclasses
from distutils.command.sdist import sdist as sdist_orig
class sdist(sdist_orig):
def run(self):
self.force_manifest = 1
if (sys.platform != "win32" and
os.path.isdir('.git')):
assert os.system("git rev-parse --verify HEAD > .gitrev") == 0
sdist_orig.run(self)
add_command_class('sdist', sdist)
pxd_include_dirs = [
directory for directory, dirs, files
in os.walk(os.path.join('Cython', 'Includes'))
if '__init__.pyx' in files or '__init__.pxd' in files
or directory == os.path.join('Cython', 'Includes')
or directory == os.path.join('Cython', 'Includes', 'numpy')
]
pxd_include_patterns = [
p+'/*.pxd' for p in pxd_include_dirs ] + [
p+'/*.pyx' for p in pxd_include_dirs ]
setup_args['package_data'] = {
'Cython.Plex' : ['*.pxd'],
'Cython.Compiler' : ['*.pxd'],
'Cython.Runtime' : ['*.pyx', '*.pxd'],
'Cython.Utility' : ['*.pyx', '*.pxd', '*.c', '*.h', '*.cpp'],
'Cython' : [ p[7:] for p in pxd_include_patterns ] + ['py.typed', '__init__.pyi', 'Shadow.pyi'],
'Cython.Debugger.Tests': ['codefile', 'cfuncs.c'],
}
# This dict is used for passing extra arguments that are setuptools
# specific to setup
setuptools_extra_args = {}
if 'setuptools' in sys.modules:
setuptools_extra_args['python_requires'] = PYTHON_REQUIRES
setuptools_extra_args['zip_safe'] = False
setuptools_extra_args['entry_points'] = {
'console_scripts': [
'cython = Cython.Compiler.Main:setuptools_main',
'cythonize = Cython.Build.Cythonize:main',
'cygdb = Cython.Debugger.Cygdb:main',
]
}
scripts = []
else:
if os.name == "posix":
scripts = ["bin/cython", "bin/cythonize", "bin/cygdb"]
else:
scripts = ["cython.py", "cythonize.py", "cygdb.py"]
def compile_cython_modules(profile=False, coverage=False, compile_minimal=False, compile_more=False, cython_with_refnanny=False,
cython_limited_api=False):
source_root = os.path.abspath(os.path.dirname(__file__))
compiled_modules = [
"Cython.Plex.Actions",
"Cython.Plex.Scanners",
"Cython.Compiler.FlowControl",
"Cython.Compiler.LineTable",
"Cython.Compiler.Scanning",
"Cython.Compiler.Visitor",
"Cython.Runtime.refnanny",
]
if not compile_minimal:
compiled_modules.extend([
"Cython.Plex.Machines",
"Cython.Plex.Transitions",
"Cython.Plex.DFA",
"Cython.Compiler.Code",
"Cython.Compiler.FusedNode",
"Cython.Compiler.Parsing",
"Cython.Tempita._tempita",
"Cython.StringIOTree",
"Cython.Utils",
])
if compile_more and not compile_minimal:
compiled_modules.extend([
"Cython.Compiler.Lexicon",
"Cython.Compiler.Pythran",
"Cython.Build.Dependencies",
"Cython.Compiler.ParseTreeTransforms",
"Cython.Compiler.Nodes",
"Cython.Compiler.ExprNodes",
"Cython.Compiler.ModuleNode",
"Cython.Compiler.Optimize",
])
from shutil import which
from sysconfig import get_path
pgen = which(
'pgen', path=os.pathsep.join([os.environ['PATH'], os.path.join(get_path('include'), '..', 'Parser')]))
if not pgen:
sys.stderr.write("Unable to find pgen, not compiling formal grammar.\n")
else:
parser_dir = os.path.join(os.path.dirname(__file__), 'Cython', 'Parser')
grammar = os.path.join(parser_dir, 'Grammar')
subprocess.check_call([
pgen,
os.path.join(grammar),
os.path.join(parser_dir, 'graminit.h'),
os.path.join(parser_dir, 'graminit.c'),
])
cst_pyx = os.path.join(parser_dir, 'ConcreteSyntaxTree.pyx')
if os.stat(grammar)[stat.ST_MTIME] > os.stat(cst_pyx)[stat.ST_MTIME]:
mtime = os.stat(grammar)[stat.ST_MTIME]
os.utime(cst_pyx, (mtime, mtime))
compiled_modules.extend([
"Cython.Parser.ConcreteSyntaxTree",
])
defines = []
extra_extension_args = {}
if cython_limited_api:
defines += [
('Py_LIMITED_API', '0x03080000'),
]
extra_extension_args['py_limited_api'] = True
if sysconfig.get_config_var('Py_GIL_DISABLED') and platform.system() == "Windows":
defines.append(('Py_GIL_DISABLED', 1))
extra_defines = []
if cython_with_refnanny:
extra_defines.append(('CYTHON_REFNANNY', '1'))
if coverage:
extra_defines.append(('CYTHON_TRACE', '1'))
extensions = []
for module in compiled_modules:
source_file = os.path.join(source_root, *module.split('.'))
pyx_source_file = source_file + ".py"
if not os.path.exists(pyx_source_file):
pyx_source_file += "x" # .py -> .pyx
dep_files = []
if os.path.exists(source_file + '.pxd'):
dep_files.append(source_file + '.pxd')
extensions.append(Extension(
module, sources=[pyx_source_file],
define_macros=(defines + (extra_defines if '.refnanny' not in module else [])),
depends=dep_files,
**extra_extension_args))
# XXX hack around setuptools quirk for '*.pyx' sources
extensions[-1].sources[0] = pyx_source_file
# optimise build parallelism by starting with the largest modules
extensions.sort(key=lambda ext: os.path.getsize(ext.sources[0]), reverse=True)
from Cython.Distutils.build_ext import build_ext as cy_build_ext
build_ext = None
try:
# Use the setuptools build_ext in preference, because it
# gets limited api filenames right, and should inherit itself from
# Cython's own build_ext. But failing that, use the Cython build_ext
# directly.
from setuptools.command.build_ext import build_ext
if cy_build_ext not in build_ext.__mro__:
build_ext = cy_build_ext
except ImportError:
build_ext = cy_build_ext
from Cython.Compiler.Options import get_directive_defaults
get_directive_defaults().update(
language_level=3,
auto_pickle=False,
binding=False,
always_allow_keywords=False,
autotestdict=False,
)
if profile:
get_directive_defaults()['profile'] = True
sys.stderr.write("Enabled profiling for the Cython binary modules\n")
if coverage:
get_directive_defaults()['linetrace'] = True
sys.stderr.write("Enabled line tracing and profiling for the Cython binary modules\n")
# not using cythonize() directly to let distutils decide whether building extensions was requested
add_command_class("build_ext", build_ext)
setup_args['ext_modules'] = extensions
def collect_changelog(version):
version_line_start = version + '('
release_version = version + ' ' # to include subsequent a/b/rc sections in final release changelog
add_gh_issues_link = partial(
re.compile(':issue:`([0-9]+)`').sub,
TRACKER_URL + r'\1', # Replace ReST reference by direct tracker issue link.
)
# Look for lines like 'Includes all fixes from Cython 3.0.12.' and add their version sections.
find_version_reference = re.compile(
r"\s*\* [Ii]ncludes all " # codespell:ignore ncludes
r"(?:bug[ -])?(?P<what>changes|fixes(?:\s+and features)?) " # 'what' is unused (but interesting)
r"(?:as of|from) .*"
r"(?P<version>[0-9]+\.[0-9]+\.[0-9]+(?: ?[abr]c? ?[0-9+])?)"
).match
referenced_versions = set()
# Collected sections in output order.
sections = {
'Features added': [],
'Bugs fixed': [],
'Other changes': [],
}
changelog = []
with open("CHANGES.rst", encoding='utf8') as f:
lines = iter(f)
for line in lines:
if line.replace(' ', '').startswith(version_line_start):
break
else:
# No changelog for this version found :-?
return ''
changelog.append(line)
changelog.append(next(lines)) # underline of version
assert changelog[-1].startswith('=====')
current_sections = sections
current_section = []
for line in lines:
if line.startswith('-----'):
# Section start found.
section_name = current_section.pop().strip()
current_section = current_sections[section_name]
elif line.startswith('====='):
# Version start found.
part_version_line = current_section.pop().strip()
# Remove useless empty lines and version markers from section endings.
for section in current_sections.values():
while section and (not section[-1].strip() or section[-1].endswith(':\n')):
section.pop()
# Stop at first unrelated version, unless we're still looking for referenced versions.
if part_version_line.startswith(release_version):
current_sections = sections
else:
current_sections = defaultdict(list) # throw-away dict
part_version = part_version_line.split('(', 1)[0].strip()
if part_version in referenced_versions:
referenced_versions.remove(part_version)
# Include the bug fix section of referenced versions.
current_sections['Bugs fixed'] = sections['Bugs fixed']
elif not referenced_versions:
# All relevant version sections parsed.
break
# Put version marker into all sections.
for section in current_sections.values():
section.append('\n')
section.append(f"{part_version_line}:\n")
# Ignore initial section content.
current_section = []
else:
# Regular content line found.
if ':issue:' in line:
line = add_gh_issues_link(line)
else:
included_version = find_version_reference(line)
if included_version:
referenced_versions.add(included_version.group('version'))
current_section.append(line)
for section_name, section in sections.items():
if not section:
continue
changelog.append('\n')
changelog.append(section_name + '\n')
changelog.append('-' * len(section_name) + '\n')
changelog.extend(section)
return ''.join(changelog)
def check_option(name):
cli_arg = "--" + name
if cli_arg in sys.argv:
sys.argv.remove(cli_arg)
return True
env_var = name.replace("-", "_").upper()
if os.environ.get(env_var) == "true":
return True
return False
cython_profile = check_option('cython-profile')
cython_coverage = check_option('cython-coverage')
cython_with_refnanny = check_option('cython-with-refnanny')
compile_cython_itself = not check_option('no-cython-compile')
if compile_cython_itself and sysconfig.get_config_var("Py_GIL_DISABLED"):
# On freethreaded builds there's good reasons not to compile Cython by default.
# Mainly that it doesn't currently declare as compatible with the limited API
# (because little effort has been spent making it thread-safe) and thus
# importing a compiled version of Cython will throw the interpreter back
# to using the GIL.
# This will adversely affect users of pyximport or jupyter.
# Therefore, we let users explicitly force Cython to be compiled on freethreaded
# builds but don't do it by default.
compile_cython_itself = (
check_option('cython-compile') or
check_option('cython-compile-all') or
check_option('cython-compile-minimal'))
if compile_cython_itself:
cython_compile_more = check_option('cython-compile-all')
cython_compile_minimal = check_option('cython-compile-minimal')
cython_limited_api = check_option('cython-limited-api')
if cython_limited_api:
setup_options = setup_args.setdefault('options', {})
bdist_wheel_options = setup_options.setdefault('bdist_wheel', {})
bdist_wheel_options['py_limited_api'] = 'cp37'
setup_args.update(setuptools_extra_args)
def dev_status(version: str):
if 'b' in version or 'c' in version:
# 1b1, 1beta1, 2rc1, ...
return 'Development Status :: 4 - Beta'
elif 'a' in version:
# 1a1, 1alpha1, ...
return 'Development Status :: 3 - Alpha'
else:
return 'Development Status :: 5 - Production/Stable'
packages = [
'Cython',
'Cython.Build',
'Cython.Compiler',
'Cython.Runtime',
'Cython.Distutils',
'Cython.Debugger',
'Cython.Debugger.Tests',
'Cython.Plex',
'Cython.Tests',
'Cython.Build.Tests',
'Cython.Compiler.Tests',
'Cython.Utility',
'Cython.Tempita',
'pyximport',
]
def run_build():
if compile_cython_itself and (is_cpython or cython_compile_more or cython_compile_minimal):
compile_cython_modules(cython_profile, cython_coverage, cython_compile_minimal, cython_compile_more, cython_with_refnanny,
cython_limited_api)
from Cython import __version__ as version
setup(
name='Cython',
version=version,
url='https://cython.org/',
author='Robert Bradshaw, Stefan Behnel, David Woods, Greg Ewing, et al.',
author_email='cython-devel@python.org',
description="The Cython compiler for writing C extensions in the Python language.",
long_description_content_type="text/x-rst",
long_description=textwrap.dedent("""\
The Cython language makes writing C extensions for the Python language as
easy as Python itself. Cython is a source code translator based on Pyrex_,
but supports more cutting edge functionality and optimizations.
The Cython language is a superset of the Python language (almost all Python
code is also valid Cython code), but Cython additionally supports optional
static typing to natively call C functions, operate with C++ classes and
declare fast C types on variables and class attributes. This allows the
compiler to generate very efficient C code from Cython code.
This makes Cython the ideal language for writing glue code for external
C/C++ libraries, and for fast C modules that speed up the execution of
Python code.
The newest Cython release can always be downloaded from https://cython.org/.
Unpack the tarball or zip file, enter the directory, and then run::
pip install .
Note that for one-time builds, e.g. for CI/testing, on platforms that are not
covered by one of the wheel packages provided on PyPI *and* the pure Python wheel
that we provide is not used, it is substantially faster than a full source build
to install an uncompiled (slower) version of Cython with::
NO_CYTHON_COMPILE=true pip install .
.. _Pyrex: https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
""") + collect_changelog(version),
license='Apache-2.0',
classifiers=[
dev_status(version),
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: Stackless",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Cython",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
],
project_urls={
"Documentation": "https://cython.readthedocs.io/",
"Donate": "https://cython.readthedocs.io/en/latest/src/donating.html",
"Source Code": "https://github.com/cython/cython",
"Bug Tracker": TRACKER_URL,
"User Group": "https://groups.google.com/g/cython-users",
},
scripts=scripts,
packages=packages,
py_modules=["cython"],
**setup_args
)
if __name__ == '__main__':
run_build()
|