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 b62f810 commit 62e8b12Copy full SHA for 62e8b12
setup.py
@@ -3,6 +3,10 @@
3
except ImportError:
4
from distutils.core import setup
5
6
+# Get contents of README file
7
+with open("README.md", "r") as f:
8
+ readme = f.read()
9
+
10
setup(
11
version="0.0.2",
12
name="testgres.common",
@@ -12,10 +16,10 @@
16
package_dir={"testgres.common": "src"},
13
17
description='Testgres common code',
14
18
url='https://github.com/postgrespro/testgres.common',
19
+ long_description=readme,
15
20
long_description_content_type='text/markdown',
21
license='PostgreSQL',
22
author='Postgres Professional',
23
author_email='[email protected]',
24
keywords=['testgres'],
25
)
-
0 commit comments