We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6017c78 commit 796bcf4Copy full SHA for 796bcf4
1 file changed
setup.py
@@ -8,6 +8,7 @@
8
# The text of the README file
9
README = (HERE / "README.md").read_text()
10
VERSION = (HERE / "VERSION").read_text()
11
+CHANGELOG = (HERE / "CHANGELOG.md").read_text()
12
13
# This call to setup() does all the work
14
setup(
@@ -35,5 +36,5 @@
35
36
'simwrapper = simwrapper.cli:cli'
37
]
38
},
- long_description=README,
39
+ long_description=README + "\n---\n" + CHANGELOG,
40
)
0 commit comments