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.
2 parents 9b25ca7 + 954b9ff commit 55323a8Copy full SHA for 55323a8
setup.py
@@ -17,13 +17,23 @@
17
18
from setuptools import setup
19
20
+
21
+def get_long_description():
22
+ """Returns the content of README.rst"""
23
+ with open("README.rst", "r", encoding="utf-8") as req:
24
+ req_contents = req.read()
25
+ return req_contents
26
27
28
if __name__ == "__main__":
29
setup(
30
name="aexpect",
31
version="1.8.0",
32
description="Aexpect",
33
author="Aexpect developers",
34
author_email="[email protected]",
35
+ long_description=get_long_description(),
36
+ long_description_content_type="text/markdown",
37
url="http://avocado-framework.github.io/",
38
license="GPLv2+",
39
classifiers=[
0 commit comments