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 8fc6481 commit d6a1f88Copy full SHA for d6a1f88
setup.py
@@ -4,7 +4,7 @@
4
5
from setuptools import find_packages, setup
6
7
-with open("README.md") as readme_file:
+with open("README.md", "r", encoding='utf-8') as readme_file:
8
readme = readme_file.read()
9
10
requirements = [
@@ -32,6 +32,7 @@
32
install_requires=requirements,
33
license="MIT license",
34
long_description=readme,
35
+ long_description_content_type='text/markdown',
36
include_package_data=True,
37
keywords="django_psdb_engine",
38
name="django_psdb_engine",
0 commit comments