Commit f81309dc authored by Sam Rushing's avatar Sam Rushing

coro.dns package (so far, contains dns codec and stub resolver)

parent 11f43fee
...@@ -79,7 +79,8 @@ setup ( ...@@ -79,7 +79,8 @@ setup (
'coro.oserrors', 'coro.oserrors',
['coro/oserrors.pyx', ], ['coro/oserrors.pyx', ],
), ),
Extension( Extension ('coro.dns.packet', ['coro/dns/packet.pyx', ],),
Extension (
'coro.clocks.tsc_time', 'coro.clocks.tsc_time',
['coro/clocks/tsc_time.pyx', ], ['coro/clocks/tsc_time.pyx', ],
pyrex_include_dirs=[os.path.join(include_dir, 'pyrex')], pyrex_include_dirs=[os.path.join(include_dir, 'pyrex')],
...@@ -89,11 +90,12 @@ setup ( ...@@ -89,11 +90,12 @@ setup (
], ],
), ),
], ],
packages=['coro', 'coro.clocks', 'coro.httpd'], packages=['coro', 'coro.clocks', 'coro.dns'],
package_dir = { package_dir = {
'': 'coroutine', '': 'coroutine',
'coro': 'coro', 'coro': 'coro',
'coro.clocks': 'coro/clocks' 'coro.clocks': 'coro/clocks',
'coro.dns': 'coro/dns',
}, },
py_modules = ['backdoor', 'coro_process', 'coro_unittest'], py_modules = ['backdoor', 'coro_process', 'coro_unittest'],
install_requires = ['cython>=0.12.1', 'pyrex>=0.9.8.6'], install_requires = ['cython>=0.12.1', 'pyrex>=0.9.8.6'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment