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 ec8d716 commit 2faf560Copy full SHA for 2faf560
MANIFEST.in
@@ -1,4 +1,4 @@
1
-include README.rst LICENSE CHANGES pyproject.toml .tmuxp.yaml
+include README.md LICENSE CHANGES pyproject.toml .tmuxp.yaml
2
include requirements/*.txt
3
recursive-include docs *.rst
4
recursive-include tests *.py *.yaml *.json *.sh
setup.py
@@ -14,9 +14,9 @@
14
tests_reqs = [line for line in f.read().split('\n') if line]
15
16
if sys.version_info[0] > 2:
17
- readme = open('README.rst', encoding='utf-8').read()
+ readme = open('README.md', encoding='utf-8').read()
18
else:
19
- readme = open('README.rst').read()
+ readme = open('README.md').read()
20
21
history = open('CHANGES').read().replace('.. :changelog:', '')
22
0 commit comments