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 915a3bd commit 5001f67Copy full SHA for 5001f67
setup.py
@@ -1,6 +1,6 @@
1
from setuptools import setup, find_packages
2
3
-with open('README.md') as readme_file:
+with open("README.md", "r", encoding="utf-8") as readme_file:
4
readme = readme_file.read()
5
6
with open('requirements.txt') as requirements_file:
@@ -26,6 +26,7 @@
26
packages=find_packages(),
27
license="Apache Software License 2.0",
28
long_description=readme,
29
+ long_description_content_type="text/markdown",
30
package_data={"": [
31
"templates/*/*.yaml",
32
"templates/*/*/*.yaml",
0 commit comments