We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b25ca7 commit 954b9ffCopy full SHA for 954b9ff
1 file changed
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="avocado-devel@redhat.com",
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