setup.py 9.84 KB
Newer Older
1
#!/usr/bin/env python
2 3 4 5
try:
    from setuptools import setup, Extension
except ImportError:
    from distutils.core import setup, Extension
Stefan Behnel's avatar
Stefan Behnel committed
6
import os
Robert Bradshaw's avatar
Robert Bradshaw committed
7
import stat
8
import subprocess
9
import textwrap
Robert Bradshaw's avatar
Robert Bradshaw committed
10
import sys
William Stein's avatar
William Stein committed
11

12 13
import platform
is_cpython = platform.python_implementation() == 'CPython'
14

15 16 17 18
# 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 = '>=2.6, !=3.0.*, !=3.1.*, !=3.2.*'

19 20 21 22 23
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'

24 25
setup_args = {}

26 27 28 29 30
def add_command_class(name, cls):
    cmdclasses = setup_args.get('cmdclass', {})
    cmdclasses[name] = cls
    setup_args['cmdclass'] = cmdclasses

31 32 33
from distutils.command.sdist import sdist as sdist_orig
class sdist(sdist_orig):
    def run(self):
34
        self.force_manifest = 1
35
        if (sys.platform != "win32" and
36
            os.path.isdir('.git')):
37
            assert os.system("git rev-parse --verify HEAD > .gitrev") == 0
38 39 40
        sdist_orig.run(self)
add_command_class('sdist', sdist)

41
pxd_include_dirs = [
42 43
    directory for directory, dirs, files
    in os.walk(os.path.join('Cython', 'Includes'))
44
    if '__init__.pyx' in files or '__init__.pxd' in files
45 46
    or directory == os.path.join('Cython', 'Includes')
    or directory == os.path.join('Cython', 'Includes', 'Deprecated')]
47 48 49 50

pxd_include_patterns = [
    p+'/*.pxd' for p in pxd_include_dirs ] + [
    p+'/*.pyx' for p in pxd_include_dirs ]
51

52 53 54 55 56 57
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 ],
58 59
    'Cython.Debugger.Tests': ['codefile', 'cfuncs.c'],
}
William Stein's avatar
William Stein committed
60

61
# This dict is used for passing extra arguments that are setuptools
62 63 64 65
# specific to setup
setuptools_extra_args = {}

if 'setuptools' in sys.modules:
66
    setuptools_extra_args['python_requires'] = PYTHON_REQUIRES
67 68 69 70
    setuptools_extra_args['zip_safe'] = False
    setuptools_extra_args['entry_points'] = {
        'console_scripts': [
            'cython = Cython.Compiler.Main:setuptools_main',
Robert Bradshaw's avatar
Robert Bradshaw committed
71 72
            'cythonize = Cython.Build.Cythonize:main',
            'cygdb = Cython.Debugger.Cygdb:main',
73 74 75
        ]
    }
    scripts = []
William Stein's avatar
William Stein committed
76
else:
77
    if os.name == "posix":
Robert Bradshaw's avatar
Robert Bradshaw committed
78
        scripts = ["bin/cython", "bin/cythonize", "bin/cygdb"]
79
    else:
Robert Bradshaw's avatar
Robert Bradshaw committed
80
        scripts = ["cython.py", "cythonize.py", "cygdb.py"]
81

82

83
def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False):
84
    source_root = os.path.abspath(os.path.dirname(__file__))
Stefan Behnel's avatar
Stefan Behnel committed
85 86 87
    compiled_modules = [
        "Cython.Plex.Scanners",
        "Cython.Plex.Actions",
88
        "Cython.Compiler.Pythran",
89
        "Cython.Compiler.Lexicon",
Stefan Behnel's avatar
Stefan Behnel committed
90 91 92 93 94 95
        "Cython.Compiler.Scanning",
        "Cython.Compiler.Parsing",
        "Cython.Compiler.Visitor",
        "Cython.Compiler.FlowControl",
        "Cython.Compiler.Code",
        "Cython.Runtime.refnanny",
96
        "Cython.Compiler.FusedNode",
Stefan Behnel's avatar
Stefan Behnel committed
97
        "Cython.Tempita._tempita",
98
        "Cython.StringIOTree",
Stefan Behnel's avatar
Stefan Behnel committed
99
    ]
100 101
    if compile_more:
        compiled_modules.extend([
102
            "Cython.Build.Dependencies",
103 104 105 106 107 108
            "Cython.Compiler.ParseTreeTransforms",
            "Cython.Compiler.Nodes",
            "Cython.Compiler.ExprNodes",
            "Cython.Compiler.ModuleNode",
            "Cython.Compiler.Optimize",
            ])
William Stein's avatar
William Stein committed
109

110 111 112 113 114
    from distutils.spawn import find_executable
    from distutils.sysconfig import get_python_inc
    pgen = find_executable(
        'pgen', os.pathsep.join([os.environ['PATH'], os.path.join(get_python_inc(), '..', 'Parser')]))
    if not pgen:
115
        sys.stderr.write("Unable to find pgen, not compiling formal grammar.\n")
116 117
    else:
        parser_dir = os.path.join(os.path.dirname(__file__), 'Cython', 'Parser')
Robert Bradshaw's avatar
Robert Bradshaw committed
118
        grammar = os.path.join(parser_dir, 'Grammar')
119 120
        subprocess.check_call([
            pgen,
Robert Bradshaw's avatar
Robert Bradshaw committed
121
            os.path.join(grammar),
122 123 124
            os.path.join(parser_dir, 'graminit.h'),
            os.path.join(parser_dir, 'graminit.c'),
            ])
Robert Bradshaw's avatar
Robert Bradshaw committed
125 126 127 128
        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))
129 130 131 132
        compiled_modules.extend([
                "Cython.Parser.ConcreteSyntaxTree",
            ])

133 134 135
    defines = []
    if cython_with_refnanny:
        defines.append(('CYTHON_REFNANNY', '1'))
William Stein's avatar
William Stein committed
136

137
    extensions = []
138 139 140 141 142 143 144 145 146 147 148 149 150
    for module in compiled_modules:
        source_file = os.path.join(source_root, *module.split('.'))
        if os.path.exists(source_file + ".py"):
            pyx_source_file = source_file + ".py"
        else:
            pyx_source_file = source_file + ".pyx"
        dep_files = []
        if os.path.exists(source_file + '.pxd'):
            dep_files.append(source_file + '.pxd')
        if '.refnanny' in module:
            defines_for_module = []
        else:
            defines_for_module = defines
151 152 153 154 155
        extensions.append(Extension(
            module, sources=[pyx_source_file],
            define_macros=defines_for_module,
            depends=dep_files))
        # XXX hack around setuptools quirk for '*.pyx' sources
156 157
        extensions[-1].sources[0] = pyx_source_file

158
    from Cython.Distutils.build_ext import new_build_ext
159 160 161 162
    if profile:
        from Cython.Compiler.Options import get_directive_defaults
        get_directive_defaults()['profile'] = True
        sys.stderr.write("Enabled profiling for the Cython binary modules\n")
163

164 165
    # not using cythonize() directly to let distutils decide whether building extensions was requested
    add_command_class("build_ext", new_build_ext)
166 167 168
    setup_args['ext_modules'] = extensions


Stefan Behnel's avatar
Stefan Behnel committed
169 170 171 172
cython_profile = '--cython-profile' in sys.argv
if cython_profile:
    sys.argv.remove('--cython-profile')

173 174 175 176 177 178
try:
    sys.argv.remove("--cython-compile-all")
    cython_compile_more = True
except ValueError:
    cython_compile_more = False

179 180 181 182 183 184
try:
    sys.argv.remove("--cython-with-refnanny")
    cython_with_refnanny = True
except ValueError:
    cython_with_refnanny = False

185 186
try:
    sys.argv.remove("--no-cython-compile")
187
    compile_cython_itself = False
188
except ValueError:
189 190
    compile_cython_itself = True

191
if compile_cython_itself and (is_cpython or cython_compile_more):
192
    compile_cython_modules(cython_profile, cython_compile_more, cython_with_refnanny)
193

194
setup_args.update(setuptools_extra_args)
195

196
from Cython import __version__ as version
197

198 199 200 201 202 203 204 205 206 207 208 209

def dev_status():
    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'


210 211 212 213 214 215
packages = [
    'Cython',
    'Cython.Build',
    'Cython.Compiler',
    'Cython.Runtime',
    'Cython.Distutils',
216 217
    'Cython.Debugger',
    'Cython.Debugger.Tests',
218 219
    'Cython.Plex',
    'Cython.Tests',
220
    'Cython.Build.Tests',
221
    'Cython.Compiler.Tests',
222
    'Cython.Utility',
Mark Florisson's avatar
Mark Florisson committed
223
    'Cython.Tempita',
224
    'pyximport',
225 226
]

William Stein's avatar
William Stein committed
227
setup(
228 229
    name='Cython',
    version=version,
Stefan Behnel's avatar
Stefan Behnel committed
230
    url='http://cython.org/',
231 232 233 234 235 236 237 238
    author='Robert Bradshaw, Stefan Behnel, Dag Seljebotn, Greg Ewing, et al.',
    author_email='cython-devel@python.org',
    description="The Cython compiler for writing C extensions for the Python language.",
    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.

239 240 241 242 243
    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.
244

245 246 247
    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.
248

249 250 251
    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, it is substantially faster
    than a full source build to install an uncompiled (slower) version of Cython with::
252 253 254

        pip install Cython --install-option="--no-cython-compile"

255 256
    .. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
    """),
257
    license='Apache',
258
    classifiers=[
259
        dev_status(),
260 261 262 263 264
        "Intended Audience :: Developers",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
Hugo's avatar
Hugo committed
265 266
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
267
        "Programming Language :: Python :: 3",
Hugo's avatar
Hugo committed
268 269 270 271
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
272
        "Programming Language :: Python :: 3.7",
Hugo's avatar
Hugo committed
273 274
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
275 276 277 278 279 280 281 282 283 284 285 286
        "Programming Language :: C",
        "Programming Language :: Cython",
        "Topic :: Software Development :: Code Generators",
        "Topic :: Software Development :: Compilers",
        "Topic :: Software Development :: Libraries :: Python Modules"
    ],

    scripts=scripts,
    packages=packages,
    py_modules=["cython"],
    **setup_args
)