-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
47 lines (45 loc) · 1.33 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
# Import __version__
exec(open("mysql_mimic/version.py").read())
setup(
name="mysql-mimic",
version=__version__,
description="A python implementation of the mysql server protocol",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/kelsin/mysql-mimic",
author="Christopher Giroir",
author_email="kelsin@valefor.com",
license="MIT",
packages=find_packages(include=["mysql_mimic", "mysql_mimic.*"]),
python_requires=">=3.6",
install_requires=["sqlglot>=18.6.0"],
extras_require={
"dev": [
"aiomysql",
"mypy",
"mysql-connector-python",
"black",
"coverage",
"freezegun",
"gssapi",
"k5test",
"pylint",
"pytest",
"pytest-asyncio",
"sphinx",
"sqlalchemy",
"twine",
"wheel",
],
"krb5": ["gssapi"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: SQL",
"Programming Language :: Python :: 3 :: Only",
],
)