We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b25ca7 commit 5d225a4Copy full SHA for 5d225a4
1 file changed
setup.py
@@ -15,15 +15,25 @@
15
16
"""Aexpect setup script"""
17
18
+import os
19
from setuptools import setup
20
21
+
22
+def get_long_description():
23
+ with open('README.rst', 'r') 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