forked from snower/TorMySQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 755 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
if os.path.exists("README.md"):
with open("README.md") as fp:
long_description = fp.read()
else:
long_description = ''
setup(
name='TorMySQL',
version='0.0.7',
packages=['tormysql'],
package_data={
'': ['README.md'],
},
install_requires=[
'tornado>=4.1',
'PyMySQL>=0.6.3',
'greenlet>=0.4.2',
],
author='snower',
author_email='sujian199@gmail.com',
url='https://github.com/snower/TorMySQL.git',
license='MIT',
keywords = [
"tornado", "mysql"
],
description='Tornado asynchronous MySQL Driver',
long_description= long_description,
zip_safe=False,
)