Skip to content

Commit 6596a9f

Browse files
committed
add long_description to setup.py, bump version to 1.7.0
1 parent 3d8decb commit 6596a9f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Diff for: setup.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,18 @@
1616
if sys.version_info < (3, 3):
1717
install_requires.append("ipaddress")
1818

19+
# Get contents of README file
20+
with open('README.md', 'r') as f:
21+
readme = f.read()
22+
1923
setup(
20-
version='1.6.0',
24+
version='1.7.0',
2125
name='testgres',
2226
packages=['testgres'],
2327
description='Testing utility for PostgreSQL and its extensions',
2428
url='https://github.com/postgrespro/testgres',
29+
long_description=readme,
30+
long_description_content_type='text/markdown',
2531
license='PostgreSQL',
2632
author='Ildar Musin',
2733
author_email='[email protected]',

0 commit comments

Comments
 (0)