Skip to content

Commit c2f2deb

Browse files
committed
feat: update version to 0.3.0 and refine package inclusion in pyproject.toml
1 parent 91150d4 commit c2f2deb

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

mbbank/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@
145145
More examples can be found on the [GitHub repository](https://github.com/thedtvn/MBBank/tree/main/examples).
146146
"""
147147

148-
from .main import MBBank, TransferContext
149148
from .asyncio import MBBankAsync, TransferContextAsync
150-
from .capcha_ocr import CapchaProcessing, CapchaOCR
149+
from .capcha_ocr import CapchaOCR, CapchaProcessing
150+
from .main import MBBank, TransferContext
151151

152152
__all__ = [
153153
"MBBank",
@@ -158,4 +158,4 @@
158158
"CapchaOCR",
159159
]
160160

161-
__version__ = "0.2.9"
161+
__version__ = "0.3.0"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ dependencies = [
1717
"wheel",
1818
"wasmtime",
1919
"mb-capcha-ocr",
20-
"pydantic",
20+
"pydantic"
2121
]
2222

2323
[project.urls]
2424
Homepage = "https://github.com/thedtvn/MBBank"
2525

2626
[tool.setuptools.packages.find]
27-
include = ["mbbank*"]
27+
include = ["mbbank", "mbbank.*"]
2828

2929
[tool.setuptools.dynamic]
3030
version = { attr = "mbbank.__version__" }
3131

3232
[dependency-groups]
3333
dev = [
34-
"pdoc>=14.7.0", # for documentation generation
35-
"ruff>=0.14.9", # for linting and formatting
36-
"ty>=0.0.1a35" # for type checking
34+
"pdoc", # for documentation generation
35+
"ruff", # for linting and formatting
36+
"ty" # for type checking
3737
]

0 commit comments

Comments
 (0)