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 900fe1b commit 4bbbcd1Copy full SHA for 4bbbcd1
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
# Basic dependencies
11
install_requires = [
12
"psutil",
@@ -19,6 +23,7 @@
19
23
package_dir={"testgres.operations": "src"},
20
24
description='Testgres subsystem to work with OS',
21
25
url='https://github.com/postgrespro/testgres.os_ops',
26
+ long_description=readme,
22
27
long_description_content_type='text/markdown',
28
license='PostgreSQL',
29
author='Postgres Professional',
0 commit comments