Skip to content
Snippets Groups Projects
Commit eff7b698be83 authored by INADA Naoki's avatar INADA Naoki
Browse files

0.5

parent 4f25f08cd27c
No related merge requests found
include README.rst LICENSE CHANGELOG include README.rst LICENSE CHANGELOG
include runtests.py tox.ini include runtests.py tox.ini
include example.py example_pool
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import setup, find_packages from setuptools import setup, find_packages
try:
with open('README.rst') as f:
readme = f.read()
except IOError:
readme = ''
setup( setup(
name="Tornado-MySQL", name="Tornado-MySQL",
...@@ -10,8 +4,8 @@ ...@@ -10,8 +4,8 @@
setup( setup(
name="Tornado-MySQL", name="Tornado-MySQL",
version="0.4", version="0.5",
url='https://github.com/PyMySQL/Tornado-MySQL', url='https://github.com/PyMySQL/Tornado-MySQL',
author='INADA Naoki', author='INADA Naoki',
author_email='songofacandy@gmail.com', author_email='songofacandy@gmail.com',
description='Pure Python MySQL Driver for Tornado', description='Pure Python MySQL Driver for Tornado',
install_requires=['tornado>=4.0'], install_requires=['tornado>=4.0'],
...@@ -13,9 +7,8 @@ ...@@ -13,9 +7,8 @@
url='https://github.com/PyMySQL/Tornado-MySQL', url='https://github.com/PyMySQL/Tornado-MySQL',
author='INADA Naoki', author='INADA Naoki',
author_email='songofacandy@gmail.com', author_email='songofacandy@gmail.com',
description='Pure Python MySQL Driver for Tornado', description='Pure Python MySQL Driver for Tornado',
install_requires=['tornado>=4.0'], install_requires=['tornado>=4.0'],
long_description=readme,
license="MIT", license="MIT",
packages=find_packages(), packages=find_packages(),
classifiers=[ classifiers=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment