forked from jonashaag/bjoern
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 1.26 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
import os
import glob
from distutils.core import setup, Extension
SOURCE_FILES = [os.path.join('http-parser', 'http_parser.c')] + \
glob.glob(os.path.join('bjoern', '*.c'))
bjoern_extension = Extension(
'bjoern',
sources = SOURCE_FILES,
libraries = ['ev'],
include_dirs = ['http-parser'],
define_macros = [('WANT_SENDFILE', '1'),
('WANT_SIGINT_HANDLING', '1')],
extra_compile_args = ['-std=c99', '-fno-strict-aliasing', '-fcommon',
'-fPIC', '-Wall', '-Wextra', '-Wno-unused-parameter',
'-Wno-missing-field-initializers', '-g']
)
setup(
name = 'bjoern',
author = 'Jonas Haag',
author_email = '[email protected]',
license = '2-clause BSD',
url = 'https://github.com/jonashaag/bjoern',
description = 'A screamingly fast Python WSGI server written in C.',
version = '1.3.2',
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server'],
ext_modules = [bjoern_extension]
)