File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 2
2
# -*- coding: utf-8 -*-
3
3
4
4
try :
5
+ from pathlib import Path
5
6
from setuptools import setup , Command
6
7
except ImportError :
7
8
from distutils .core import setup , Command
@@ -30,6 +31,9 @@ def run(self):
30
31
31
32
version = "0.41"
32
33
34
+ this_directory = Path (__file__ ).parent
35
+ long_description = (this_directory / "README.md" ).read_text ()
36
+
33
37
setup (
34
38
name = "mysql-replication" ,
35
39
version = version ,
@@ -38,6 +42,8 @@ def run(self):
38
42
39
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" ,
42
48
packages = ["pymysqlreplication" ,
43
49
"pymysqlreplication.constants" ,
You can’t perform that action at this time.
0 commit comments