-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
151 lines (130 loc) · 5.54 KB
/
setup.py
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
import sys
import tempfile
from collections import defaultdict
from datetime import date
from distutils.ccompiler import CCompiler
from distutils.errors import CompileError
from glob import glob
from pathlib import Path
from typing import (Any,
Iterable)
from setuptools import (Command,
Extension,
find_packages,
setup)
from setuptools.command.build_ext import build_ext
from setuptools.command.develop import develop
__version__ = '0.5.0'
project_base_url = 'https://github.com/lycantropos/cppbuiltins/'
def read_file(path_string: str) -> str:
return Path(path_string).read_text(encoding='utf-8')
def is_flag_supported(flag: str, compiler: CCompiler) -> bool:
with tempfile.NamedTemporaryFile('w',
suffix='.cpp') as file:
file.write('int main(void) { return 0; }')
try:
compiler.compile([file.name],
extra_postargs=[flag])
except CompileError:
return False
return True
def to_first_supported_flag(flags: Iterable[str], compiler: CCompiler) -> str:
flags = list(flags)
try:
return next(flag
for flag in flags
if is_flag_supported(flag, compiler))
except StopIteration:
quote = '"{}"'.format
raise CompileError('None of {flags} flags are supported '
'by {compiler} compiler.'
.format(flags=', '.join(map(quote, flags)),
compiler=quote(compiler.compiler_type)))
def year_to_standard(year: int) -> str:
return 'c++{}'.format(str(year)[2:])
class BuildExt(build_ext):
"""A custom build extension for adding compiler-specific options."""
compile_args = defaultdict(list, {'msvc': ['/EHsc'], 'unix': []})
link_args = defaultdict(list, {'msvc': [], 'unix': []})
if sys.platform == 'darwin':
darwin_args = ['-stdlib=libc++', '-mmacosx-version-min=10.7']
compile_args['unix'] += darwin_args
link_args['unix'] += darwin_args
def build_extensions(self) -> None:
compiler_type = self.compiler.compiler_type
compile_args = self.compile_args[compiler_type]
link_args = self.link_args[compiler_type]
cpp_standards = [
year_to_standard(year)
for year in reversed(range(2017, date.today().year + 1, 3))]
if compiler_type == 'unix':
compile_args.append(
to_first_supported_flag(['-std={}'.format(standard)
for standard in cpp_standards],
self.compiler))
if is_flag_supported('-fvisibility=hidden', self.compiler):
compile_args.append('-fvisibility=hidden')
elif compiler_type == 'msvc':
try:
standard_flag = to_first_supported_flag(
['/std:{}'.format(standard) for standard in cpp_standards],
self.compiler)
except CompileError:
compile_args.append('/std:c++latest')
else:
compile_args.append(standard_flag)
define_macros = [('VERSION_INFO', self.distribution.get_version())]
for extension in self.extensions:
extension.extra_compile_args += compile_args
extension.extra_link_args += link_args
extension.define_macros += define_macros
super().build_extensions()
class Develop(develop):
def reinitialize_command(self,
name: str,
reinit_subcommands: int = 0,
**kwargs: Any) -> Command:
if name == build_ext.__name__:
kwargs.setdefault('debug', 1)
result = super().reinitialize_command(name, reinit_subcommands,
**kwargs)
if name == build_ext.__name__:
result.ensure_finalized()
for extension in result.extensions:
extension.undef_macros.append('NDEBUG')
return result
class LazyPybindInclude:
def __str__(self) -> str:
import pybind11
return pybind11.get_include()
name = 'cppbuiltins'
setup(name=name,
packages=find_packages(exclude=('tests', 'tests.*')),
version=__version__,
description='Alternative implementation of python builtins '
'based on C++ `std` library.',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author='Azat Ibrakov',
author_email='azatibrakov@gmail.com',
license='MIT License',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
],
url=project_base_url,
download_url=project_base_url + 'archive/master.zip',
python_requires='>=3.5',
setup_requires=read_file('requirements-setup.txt'),
cmdclass={build_ext.__name__: BuildExt,
develop.__name__: Develop},
ext_modules=[Extension(name,
glob('src/*.cpp'),
include_dirs=[LazyPybindInclude()],
language='c++')],
zip_safe=False)