Thanks to visit codestin.com Credit goes to github.com
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 c35cd81 commit c364263Copy full SHA for c364263
setup.py
@@ -1,4 +1,5 @@
1
#!/usr/bin/env python
2
+import io
3
from setuptools import setup, find_packages
4
5
version_tuple = __import__('pymysql').VERSION
@@ -8,6 +9,9 @@
8
9
else:
10
version = "%d.%d.%d" % version_tuple[:3]
11
12
+with open('./README.rst', encoding='utf-8') as f:
13
+ readme = f.read()
14
+
15
setup(
16
name="PyMySQL",
17
version=version,
@@ -17,6 +21,7 @@
21
maintainer='INADA Naoki',
18
22
maintainer_email='[email protected]',
19
23
description='Pure Python MySQL Driver',
24
+ long_description=readme,
20
25
license="MIT",
26
packages=find_packages(),
27
classifiers=[
0 commit comments