File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ asyncpg -- A fast PostgreSQL Database Client Library for Python/asyncio
1313**asyncpg ** is a database interface library designed specifically for
1414PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation
1515of PostgreSQL server binary protocol for use with Python's ``asyncio ``
16- framework. You can read more about asyncpg in an introductory blog post
17- `here <http://magic.io/blog/asyncpg-1m-rows-from-postgres-to-python/ >`_.
16+ framework. You can read more about asyncpg in an introductory
17+ `blog post <http://magic.io/blog/asyncpg-1m-rows-from-postgres-to-python/ >`_.
1818
1919
2020Documentation
Original file line number Diff line number Diff line change @@ -170,10 +170,15 @@ def _patch_cfile(self, cfile):
170170 f .write (src )
171171
172172
173+ with open (os .path .join (os .path .dirname (__file__ ), 'README.rst' )) as f :
174+ readme = f .read ()
175+
176+
173177setuptools .setup (
174178 name = 'asyncpg' ,
175179 version = '0.7.0' ,
176180 description = 'An asyncio PosgtreSQL driver' ,
181+ long_description = readme ,
177182 classifiers = [
178183 'License :: OSI Approved :: Apache Software License' ,
179184 'Intended Audience :: Developers' ,
@@ -188,6 +193,7 @@ def _patch_cfile(self, cfile):
188193 platforms = ['POSIX' ],
189194 author = 'MagicStack Inc' ,
190195 author_email = 'hello@magic.io' ,
196+ url = 'https://github.com/MagicStack/asyncpg' ,
191197 license = 'Apache License, Version 2.0' ,
192198 packages = ['asyncpg' ],
193199 provides = ['asyncpg' ],
You can’t perform that action at this time.
0 commit comments