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
13
13
**asyncpg ** is a database interface library designed specifically for
14
14
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation
15
15
of 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/ >`_.
18
18
19
19
20
20
Documentation
Original file line number Diff line number Diff line change @@ -170,10 +170,15 @@ def _patch_cfile(self, cfile):
170
170
f .write (src )
171
171
172
172
173
+ with open (os .path .join (os .path .dirname (__file__ ), 'README.rst' )) as f :
174
+ readme = f .read ()
175
+
176
+
173
177
setuptools .setup (
174
178
name = 'asyncpg' ,
175
179
version = '0.7.0' ,
176
180
description = 'An asyncio PosgtreSQL driver' ,
181
+ long_description = readme ,
177
182
classifiers = [
178
183
'License :: OSI Approved :: Apache Software License' ,
179
184
'Intended Audience :: Developers' ,
@@ -188,6 +193,7 @@ def _patch_cfile(self, cfile):
188
193
platforms = ['POSIX' ],
189
194
author = 'MagicStack Inc' ,
190
195
author_email = 'hello@magic.io' ,
196
+ url = 'https://github.com/MagicStack/asyncpg' ,
191
197
license = 'Apache License, Version 2.0' ,
192
198
packages = ['asyncpg' ],
193
199
provides = ['asyncpg' ],
You can’t perform that action at this time.
0 commit comments