-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 841 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 841 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
from setuptools import setup
import mysqlproxy
LONG_DESC = """
mysqlproxy is a proxy for a MySQL server. It uses a hook
system to allow interception of any part of the MySQL protocol.
"""
VERSION = mysqlproxy.__version__
setup(
name='mysqlproxy',
version=VERSION,
packages=['mysqlproxy'],
scripts=['scripts/mysqlproxy-standalone'],
description='proxy library for MySQL',
author='Pat Mac',
author_email='itgpmc@gmail.com',
long_description=LONG_DESC,
license='MIT',
url='https://github.com/spigwitmer/mysqlproxy',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Database'
]
)