Skip to content

Commit

Permalink
Merge pull request #505 from 23-OSSCA-python-mysql-replication/hotfix…
Browse files Browse the repository at this point in the history
…/setup-add-util

setup-add-util
  • Loading branch information
sean-k1 committed Oct 5, 2023
1 parent 5da86b3 commit cfa6bc0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions pymysqlreplication/util/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .bytes import *
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,12 @@ def run(self):
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache 2",
packages=["pymysqlreplication",
"pymysqlreplication.constants",
"pymysqlreplication.tests"],
packages=[
"pymysqlreplication",
"pymysqlreplication.constants",
"pymysqlreplication.tests",
"pymysqlreplication.util",
],
cmdclass={"test": TestCommand},
install_requires=['pymysql>=1.1.0'],
)

0 comments on commit cfa6bc0

Please sign in to comment.