├── .gitignore ├── MANIFEST.in ├── README.md ├── distribute_setup.py ├── lib └── gevent_psycopg2.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/gevent-psycopg2/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include distribute_setup.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/gevent-psycopg2/HEAD/README.md -------------------------------------------------------------------------------- /distribute_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/gevent-psycopg2/HEAD/distribute_setup.py -------------------------------------------------------------------------------- /lib/gevent_psycopg2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/gevent-psycopg2/HEAD/lib/gevent_psycopg2.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/gevent-psycopg2/HEAD/setup.py --------------------------------------------------------------------------------