-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (25 loc) · 915 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# requirements
install_requires = [
"six>=1.10.0",
"mysql-replication==0.8",
]
setup(name="mysql-eventprocessor",
version=__import__("mysqlevp").__version__,
description="daemon interface for handling MySQL binary log events",
author="zako",
author_email="jffifa@gmail.com",
packages=find_packages(),
url="https://github.com/jffifa/python-mysql-eventprocessor",
license="MIT",
install_requires=install_requires,
classifiers=[
"Topic :: Database",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
])