forked from MagicStack/uvloop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
126 lines (99 loc) · 4 KB
/
setup.py
File metadata and controls
126 lines (99 loc) · 4 KB
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
import os
import re
import subprocess
import sys
import unittest
if sys.platform in ('win32', 'cygwin', 'cli'):
raise RuntimeError('uvloop does not support Windows at the moment')
if sys.version_info < (3, 5):
raise RuntimeError('uvloop requires Python 3.5 or greater')
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
LIBUV_DIR = os.path.join(os.path.dirname(__file__), 'vendor', 'libuv')
def discover_tests():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
return test_suite
class libuv_build_ext(build_ext):
build_ext.user_options.extend([
("use-system-libuv", None,
"Use the system provided libuv, instead of the bundled one")
])
build_ext.boolean_options.extend(["use-system-libuv"])
def initialize_options(self):
build_ext.initialize_options(self)
if getattr(self, 'use_system_libuv', None) is None:
self.use_system_libuv = 0
def build_libuv(self):
env = os.environ.copy()
cur_cflags = env.get('CFLAGS', '')
if not re.search('-O\d', cur_cflags):
cur_cflags += ' -O2'
env['CFLAGS'] = (cur_cflags + ' -fPIC ' + env.get('ARCHFLAGS', ''))
j_flag = '-j{}'.format(os.cpu_count() or 1)
if not os.path.exists(os.path.join(LIBUV_DIR, 'configure')):
subprocess.run(['/bin/sh', 'autogen.sh'], cwd=LIBUV_DIR, env=env,
check=True)
# 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_DIR, env=env, check=True)
subprocess.run(['./configure'], cwd=LIBUV_DIR, env=env, check=True)
c_flag = "CFLAGS={}".format(env['CFLAGS'])
subprocess.run(['make', j_flag, c_flag],
cwd=LIBUV_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_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'):
self.compiler.add_library('kvm')
elif sys.platform.startswith('sunos'):
self.compiler.add_library('kstat')
super().build_extensions()
setup(
name='uvloop',
description='Fast implementation of asyncio event loop on top of libuv',
url='http://github.com/MagicStack/uvloop',
license='MIT',
author='Yury Selivanov',
author_email='yury@magic.io',
platforms=['*nix'],
version='0.5.4',
packages=['uvloop'],
cmdclass={'build_ext': libuv_build_ext},
ext_modules=[
Extension(
"uvloop.loop",
sources=[
"uvloop/loop.c",
],
extra_compile_args=['-O2']
),
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
],
provides=['uvloop'],
include_package_data=True,
test_suite='setup.discover_tests'
)