We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d403e commit c60c70eCopy full SHA for c60c70e
setup.py
@@ -2,6 +2,7 @@
2
# -*- coding: utf-8 -*-
3
4
try:
5
+from pathlib import Path
6
from setuptools import setup, Command
7
except ImportError:
8
from distutils.core import setup, Command
@@ -30,6 +31,9 @@ def run(self):
30
31
32
version = "0.41"
33
34
+this_directory = Path(__file__).parent
35
+long_description = (this_directory / "README.md").read_text()
36
+
37
setup(
38
name="mysql-replication",
39
version=version,
@@ -38,6 +42,8 @@ def run(self):
42
author_email="[email protected]",
43
description=("Pure Python Implementation of MySQL replication protocol "
40
44
"build on top of PyMYSQL."),
45
+ long_description=long_description,
46
+ long_description_content_type='text/markdown',
41
47
license="Apache 2",
48
packages=["pymysqlreplication",
49
"pymysqlreplication.constants",
0 commit comments