Skip to content

Commit 0185586

Browse files
committed
Fix setup.py metadata and README rst issues
1 parent 2d86ac8 commit 0185586

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
1414
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean implementation
1515
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/>`_.
1818

1919

2020
Documentation

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
173177
setuptools.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'],

0 commit comments

Comments
 (0)