forked from julien-duponchelle/python-mysql-replication
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (41 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
from pathlib import Path
import sys
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.42"
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="mysql-replication",
version=version,
url="https://github.com/julien-duponchelle/python-mysql-replication",
author="Julien Duponchelle",
author_email="[email protected]",
description=("Pure Python Implementation of MySQL replication protocol "
"build on top of PyMYSQL."),
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache 2",
packages=["pymysqlreplication",
"pymysqlreplication.constants",
"pymysqlreplication.tests"],
cmdclass={"test": TestCommand},
install_requires=['pymysql>=0.10'],
)