-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.01 KB
/
setup.py
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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='pymysql_manager',
version='0.0.2',
description='pymysql connection & pool manager for python3',
long_description=open('README.rst').read(),
author='zhouyl',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires = [
'PyMySQL>=0.8.0',
'connection_pool>=0.0.1',
],
url='https://github.com/zhouyl/pymysql-connection-manager',
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database :: Front-Ends',
],
keywords=["mysql", "pymysql", "mysql-connection", "mysql-pool", "pool", "connection-manager"]
)