Skip to content

Commit 62e8b12

Browse files
author
d.kovalenko
committed
setup.py is updated (readme)
+formatting
1 parent b62f810 commit 62e8b12

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
except ImportError:
44
from distutils.core import setup
55

6+
# Get contents of README file
7+
with open("README.md", "r") as f:
8+
readme = f.read()
9+
610
setup(
711
version="0.0.2",
812
name="testgres.common",
@@ -12,10 +16,10 @@
1216
package_dir={"testgres.common": "src"},
1317
description='Testgres common code',
1418
url='https://github.com/postgrespro/testgres.common',
19+
long_description=readme,
1520
long_description_content_type='text/markdown',
1621
license='PostgreSQL',
1722
author='Postgres Professional',
1823
author_email='[email protected]',
1924
keywords=['testgres'],
2025
)
21-

0 commit comments

Comments
 (0)