1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00
spdylay/python/setup.py
Tatsuhiro Tsujikawa 8ce1925609 Add Python wrapper for spdylay
Still incomplete. See SPDY server sample in spdyserv.py.
2012-08-17 01:36:30 +09:00

13 lines
392 B
Python

from distutils.core import setup
from distutils.extension import Extension
spdylay_dir = '../'
setup(
ext_modules = [Extension("spdylay",
["spdylay.c"],
include_dirs=[spdylay_dir + 'lib/includes'],
library_dirs=[spdylay_dir + 'lib/.libs'],
libraries=['spdylay'])]
)