forked from julien-duponchelle/python-mysql-replication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (41 loc) · 1.27 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
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
import sys
install_requires = ['pymysql']
# add unittest2 to install_requires for python < 2.7
major, minor, _, _, _ = sys.version_info
if (major, minor) < (2, 7):
install_requires.append("unittest2")
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
"""
Finds all the tests modules in tests/, and runs them.
"""
from pymysqlreplication import tests
import unittest
unittest.main(tests, argv=sys.argv[:1])
version = "0.5"
setup(
name="mysql-replication",
version=version,
url="https://github.com/noplay/python-mysql-replication",
author="Julien Duponchelle",
author_email="[email protected]",
description=("Pure Python Implementation of MySQL replication protocol "
"build on top of PyMYSQL."),
license="Apache 2",
packages=["pymysqlreplication",
"pymysqlreplication.constants",
"pymysqlreplication.tests"],
cmdclass={"test": TestCommand},
install_requires=install_requires,
)