Skip to content

Commit

Permalink
add postgres package & cython extension
Browse files Browse the repository at this point in the history
  • Loading branch information
samrushing committed Apr 17, 2013
1 parent bf25cdb commit 0719403
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -108,6 +108,7 @@ def check_lio():
Extension ('coro.dns.surf', ['coro/dns/surf.pyx',],),
Extension ('coro.lru', ['coro/lru.pyx'], ),
Extension ('coro.asn1.ber', ['coro/asn1/ber.pyx'],),
Extension ('coro.db.postgres.proto', ['coro/db/postgres/proto.pyx'],),
Extension ('coro.ldap.query', ['coro/ldap/query.pyx'],),
Extension (
'coro.clocks.tsc_time',
Expand All @@ -119,7 +120,10 @@ def check_lio():
],
),
],
packages=['coro', 'coro.clocks', 'coro.http', 'coro.dns', 'coro.emulation'],
packages=[
'coro', 'coro.clocks', 'coro.http', 'coro.dns',
'coro.emulation', 'coro.db', 'coro.asn1', 'coro.db.postgres'
],
package_dir = {
# '': 'coroutine',
'coro': 'coro',
Expand Down

0 comments on commit 0719403

Please sign in to comment.