Skip to content

Commit

Permalink
register README to PyPI in next release
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Apr 5, 2017
1 parent c35cd81 commit c364263
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
import io
from setuptools import setup, find_packages

version_tuple = __import__('pymysql').VERSION
Expand All @@ -8,6 +9,9 @@
else:
version = "%d.%d.%d" % version_tuple[:3]

with open('./README.rst', encoding='utf-8') as f:
readme = f.read()

setup(
name="PyMySQL",
version=version,
Expand All @@ -17,6 +21,7 @@
maintainer='INADA Naoki',
maintainer_email='songofacandy@gmail.com',
description='Pure Python MySQL Driver',
long_description=readme,
license="MIT",
packages=find_packages(),
classifiers=[
Expand Down

0 comments on commit c364263

Please sign in to comment.