We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8decb commit 6596a9fCopy full SHA for 6596a9f
setup.py
@@ -16,12 +16,18 @@
16
if sys.version_info < (3, 3):
17
install_requires.append("ipaddress")
18
19
+# Get contents of README file
20
+with open('README.md', 'r') as f:
21
+ readme = f.read()
22
+
23
setup(
- version='1.6.0',
24
+ version='1.7.0',
25
name='testgres',
26
packages=['testgres'],
27
description='Testing utility for PostgreSQL and its extensions',
28
url='https://github.com/postgrespro/testgres',
29
+ long_description=readme,
30
+ long_description_content_type='text/markdown',
31
license='PostgreSQL',
32
author='Ildar Musin',
33
author_email='[email protected]',
0 commit comments