FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-uvloop/setup.py at python-3.11 · sysfce2/python-uvloop · GitHub
sysfce2
/
python-uvloop
Public
forked from
MagicStack/uvloop
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
python-uvloop
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
326 lines (265 loc) · 10.3 KB
Breadcrumbs
python-uvloop
/
setup.py
Copy path
File metadata and controls
326 lines (265 loc) · 10.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
sys
vi
=
sys
.
version_info
if
vi
<
(
3
,
7
):
raise
RuntimeError
(
'uvloop requires Python 3.7 or greater'
)
if
sys
.
platform
in
(
'win32'
,
'cygwin'
,
'cli'
):
raise
RuntimeError
(
'uvloop does not support Windows at the moment'
)
import
os
import
os
.
path
import
pathlib
import
platform
import
re
import
shutil
import
subprocess
import
sys
from
setuptools
import
setup
,
Extension
from
setuptools
.
command
.
build_ext
import
build_ext
from
setuptools
.
command
.
sdist
import
sdist
CYTHON_DEPENDENCY
=
'Cython(>=0.29.32,<0.30.0)'
# Minimal dependencies required to test uvloop.
TEST_DEPENDENCIES
=
[
# pycodestyle is a dependency of flake8, but it must be frozen because
# their combination breaks too often
# (example breakage: https://gitlab.com/pycqa/flake8/issues/427)
# aiohttp doesn't support 3.11 yet,
# see https://github.com/aio-libs/aiohttp/issues/6600
'aiohttp ; python_version < "3.11"'
,
'flake8~=3.9.2'
,
'psutil'
,
'pycodestyle~=2.7.0'
,
'pyOpenSSL~=19.0.0'
,
'mypy>=0.800'
,
CYTHON_DEPENDENCY
,
]
# Dependencies required to build documentation.
DOC_DEPENDENCIES
=
[
'Sphinx~=4.1.2'
,
'sphinxcontrib-asyncio~=0.3.0'
,
'sphinx_rtd_theme~=0.5.2'
,
]
EXTRA_DEPENDENCIES
=
{
'docs'
:
DOC_DEPENDENCIES
,
'test'
:
TEST_DEPENDENCIES
,
# Dependencies required to develop uvloop.
'dev'
: [
CYTHON_DEPENDENCY
,
'pytest>=3.6.0'
,
]
+
DOC_DEPENDENCIES
+
TEST_DEPENDENCIES
}
MACHINE
=
platform
.
machine
()
MODULES_CFLAGS
=
[
os
.
getenv
(
'UVLOOP_OPT_CFLAGS'
,
'-O2'
)]
_ROOT
=
pathlib
.
Path
(
__file__
).
parent
LIBUV_DIR
=
str
(
_ROOT
/
'vendor'
/
'libuv'
)
LIBUV_BUILD_DIR
=
str
(
_ROOT
/
'build'
/
'libuv-{}'
.
format
(
MACHINE
))
def
_libuv_build_env
():
env
=
os
.
environ
.
copy
()
cur_cflags
=
env
.
get
(
'CFLAGS'
,
''
)
if
not
re
.
search
(
r'-O\d'
,
cur_cflags
):
cur_cflags
+=
' -O2'
env
[
'CFLAGS'
]
=
(
cur_cflags
+
' -fPIC '
+
env
.
get
(
'ARCHFLAGS'
,
''
))
return
env
def
_libuv_autogen
(
env
):
if
os
.
path
.
exists
(
os
.
path
.
join
(
LIBUV_DIR
,
'configure'
)):
# No need to use autogen, the configure script is there.
return
if
not
os
.
path
.
exists
(
os
.
path
.
join
(
LIBUV_DIR
,
'autogen.sh'
)):
raise
RuntimeError
(
'the libuv submodule has not been checked out; '
'try running "git submodule init; git submodule update"'
)
subprocess
.
run
(
[
'/bin/sh'
,
'autogen.sh'
],
cwd
=
LIBUV_DIR
,
env
=
env
,
check
=
True
)
class
uvloop_sdist
(
sdist
):
def
run
(
self
):
# Make sure sdist archive contains configure
# to avoid the dependency on autotools.
_libuv_autogen
(
_libuv_build_env
())
super
().
run
()
class
uvloop_build_ext
(
build_ext
):
user_options
=
build_ext
.
user_options
+
[
(
'cython-always'
,
None
,
'run cythonize() even if .c files are present'
),
(
'cython-annotate'
,
None
,
'Produce a colorized HTML version of the Cython source.'
),
(
'cython-directives='
,
None
,
'Cythion compiler directives'
),
(
'use-system-libuv'
,
None
,
'Use the system provided libuv, instead of the bundled one'
),
]
boolean_options
=
build_ext
.
boolean_options
+
[
'cython-always'
,
'cython-annotate'
,
'use-system-libuv'
,
]
def
initialize_options
(
self
):
# initialize_options() may be called multiple times on the
# same command object, so make sure not to override previously
# set options.
if
getattr
(
self
,
'_initialized'
,
False
):
return
super
().
initialize_options
()
self
.
use_system_libuv
=
False
self
.
cython_always
=
False
self
.
cython_annotate
=
None
self
.
cython_directives
=
None
def
finalize_options
(
self
):
# finalize_options() may be called multiple times on the
# same command object, so make sure not to override previously
# set options.
if
getattr
(
self
,
'_initialized'
,
False
):
return
need_cythonize
=
self
.
cython_always
cfiles
=
{}
for
extension
in
self
.
distribution
.
ext_modules
:
for
i
,
sfile
in
enumerate
(
extension
.
sources
):
if
sfile
.
endswith
(
'.pyx'
):
prefix
,
ext
=
os
.
path
.
splitext
(
sfile
)
cfile
=
prefix
+
'.c'
if
os
.
path
.
exists
(
cfile
)
and
not
self
.
cython_always
:
extension
.
sources
[
i
]
=
cfile
else
:
if
os
.
path
.
exists
(
cfile
):
cfiles
[
cfile
]
=
os
.
path
.
getmtime
(
cfile
)
else
:
cfiles
[
cfile
]
=
0
need_cythonize
=
True
if
need_cythonize
:
import
pkg_resources
# Double check Cython presence in case setup_requires
# didn't go into effect (most likely because someone
# imported Cython before setup_requires injected the
# correct egg into sys.path.
try
:
import
Cython
except
ImportError
:
raise
RuntimeError
(
'please install {} to compile uvloop from source'
.
format
(
CYTHON_DEPENDENCY
))
cython_dep
=
pkg_resources
.
Requirement
.
parse
(
CYTHON_DEPENDENCY
)
if
Cython
.
__version__
not
in
cython_dep
:
raise
RuntimeError
(
'uvloop requires {}, got Cython=={}'
.
format
(
CYTHON_DEPENDENCY
,
Cython
.
__version__
))
from
Cython
.
Build
import
cythonize
directives
=
{}
if
self
.
cython_directives
:
for
directive
in
self
.
cython_directives
.
split
(
','
):
k
,
_
,
v
=
directive
.
partition
(
'='
)
if
v
.
lower
()
==
'false'
:
v
=
False
if
v
.
lower
()
==
'true'
:
v
=
True
directives
[
k
]
=
v
self
.
distribution
.
ext_modules
[:]
=
cythonize
(
self
.
distribution
.
ext_modules
,
compiler_directives
=
directives
,
annotate
=
self
.
cython_annotate
)
super
().
finalize_options
()
self
.
_initialized
=
True
def
build_libuv
(
self
):
env
=
_libuv_build_env
()
# Make sure configure and friends are present in case
# we are building from a git checkout.
_libuv_autogen
(
env
)
# Copy the libuv tree to build/ so that its build
# products don't pollute sdist accidentally.
if
os
.
path
.
exists
(
LIBUV_BUILD_DIR
):
shutil
.
rmtree
(
LIBUV_BUILD_DIR
)
shutil
.
copytree
(
LIBUV_DIR
,
LIBUV_BUILD_DIR
)
# Sometimes pip fails to preserve the timestamps correctly,
# in which case, make will try to run autotools again.
subprocess
.
run
(
[
'touch'
,
'configure.ac'
,
'aclocal.m4'
,
'configure'
,
'Makefile.am'
,
'Makefile.in'
],
cwd
=
LIBUV_BUILD_DIR
,
env
=
env
,
check
=
True
)
if
'LIBUV_CONFIGURE_HOST'
in
env
:
cmd
=
[
'./configure'
,
'--host='
+
env
[
'LIBUV_CONFIGURE_HOST'
]]
else
:
cmd
=
[
'./configure'
]
subprocess
.
run
(
cmd
,
cwd
=
LIBUV_BUILD_DIR
,
env
=
env
,
check
=
True
)
j_flag
=
'-j{}'
.
format
(
os
.
cpu_count
()
or
1
)
c_flag
=
"CFLAGS={}"
.
format
(
env
[
'CFLAGS'
])
subprocess
.
run
(
[
'make'
,
j_flag
,
c_flag
],
cwd
=
LIBUV_BUILD_DIR
,
env
=
env
,
check
=
True
)
def
build_extensions
(
self
):
if
self
.
use_system_libuv
:
self
.
compiler
.
add_library
(
'uv'
)
if
sys
.
platform
==
'darwin'
and
\
os
.
path
.
exists
(
'/opt/local/include'
):
# Support macports on Mac OS X.
self
.
compiler
.
add_include_dir
(
'/opt/local/include'
)
else
:
libuv_lib
=
os
.
path
.
join
(
LIBUV_BUILD_DIR
,
'.libs'
,
'libuv.a'
)
if
not
os
.
path
.
exists
(
libuv_lib
):
self
.
build_libuv
()
if
not
os
.
path
.
exists
(
libuv_lib
):
raise
RuntimeError
(
'failed to build libuv'
)
self
.
extensions
[
-
1
].
extra_objects
.
extend
([
libuv_lib
])
self
.
compiler
.
add_include_dir
(
os
.
path
.
join
(
LIBUV_DIR
,
'include'
))
if
sys
.
platform
.
startswith
(
'linux'
):
self
.
compiler
.
add_library
(
'rt'
)
elif
sys
.
platform
.
startswith
((
'freebsd'
,
'dragonfly'
)):
self
.
compiler
.
add_library
(
'kvm'
)
elif
sys
.
platform
.
startswith
(
'sunos'
):
self
.
compiler
.
add_library
(
'kstat'
)
self
.
compiler
.
add_library
(
'pthread'
)
super
().
build_extensions
()
with
open
(
str
(
_ROOT
/
'README.rst'
))
as
f
:
readme
=
f
.
read
()
with
open
(
str
(
_ROOT
/
'uvloop'
/
'_version.py'
))
as
f
:
for
line
in
f
:
if
line
.
startswith
(
'__version__ ='
):
_
,
_
,
version
=
line
.
partition
(
'='
)
VERSION
=
version
.
strip
(
"
\n
'
\"
"
)
break
else
:
raise
RuntimeError
(
'unable to read the version from uvloop/_version.py'
)
setup_requires
=
[]
if
not
(
_ROOT
/
'uvloop'
/
'loop.c'
).
exists
()
or
'--cython-always'
in
sys
.
argv
:
# No Cython output, require Cython to build.
setup_requires
.
append
(
CYTHON_DEPENDENCY
)
setup
(
name
=
'uvloop'
,
description
=
'Fast implementation of asyncio event loop on top of libuv'
,
long_description
=
readme
,
url
=
'http://github.com/MagicStack/uvloop'
,
license
=
'MIT'
,
author
=
'Yury Selivanov'
,
author_email
=
'yury@magic.io'
,
platforms
=
[
'macOS'
,
'POSIX'
],
version
=
VERSION
,
packages
=
[
'uvloop'
],
cmdclass
=
{
'sdist'
:
uvloop_sdist
,
'build_ext'
:
uvloop_build_ext
},
ext_modules
=
[
Extension
(
"uvloop.loop"
,
sources
=
[
"uvloop/loop.pyx"
,
],
extra_compile_args
=
MODULES_CFLAGS
),
],
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Framework :: AsyncIO'
,
'Programming Language :: Python :: 3 :: Only'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
'Programming Language :: Python :: 3.10'
,
'License :: OSI Approved :: Apache Software License'
,
'License :: OSI Approved :: MIT License'
,
'Intended Audience :: Developers'
,
],
include_package_data
=
True
,
extras_require
=
EXTRA_DEPENDENCIES
,
setup_requires
=
setup_requires
,
python_requires
=
'>=3.7'
,
)
Back
|
FazBrowse Home
|
New Git URL