-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (27 loc) · 914 Bytes
/
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
from setuptools import setup
from ezmysql import __version__
setup(
name="ezmysql",
version=__version__,
packages=['ezmysql'],
description='Easy way to use mysql in two models: synchronous(pymysql) and asynchronous(aiomysql.Pool) ',
author="veelion",
author_email="[email protected]",
url='https://github.com/veelion/ezmysql',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
'aiomysql',
'pymysql',
],
license='BSD',
)