FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-mysql-replication/setup.py at main · python-mysql-replication-kr/python-mysql-replication · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-mysql-replication-kr
/
python-mysql-replication
Public
forked from
julien-duponchelle/python-mysql-replication
Notifications
You must be signed in to change notification settings
Fork
2
Star
10
Code
Issues
21
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-mysql-replication
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
57 lines (45 loc) · 1.33 KB
Breadcrumbs
python-mysql-replication
/
setup.py
Copy path
File metadata and controls
57 lines (45 loc) · 1.33 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
55
56
57
#!/usr/bin/env python
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
=
"1.0.2"
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
=
"julien@duponchelle.info"
,
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"
,
"pymysqlreplication.util"
,
],
cmdclass
=
{
"test"
:
TestCommand
},
install_requires
=
[
"pymysql>=1.1.0"
],
)
Back
|
FazBrowse Home
|
New Git URL