Skip to content

Commit da0da6a

Browse files
committed
Fix imports, remove unneeded dependency
1 parent 01b18ac commit da0da6a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "toller"
7-
version = "0.0.2"
7+
version = "0.0.3"
88
description = "Intelligent async flow controller for Python - making complex asyncio workflows manageable"
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -32,9 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.13",
3333
"Topic :: Software Development :: Libraries :: Python Modules",
3434
]
35-
dependencies = [
36-
"asyncio",
37-
]
35+
dependencies = []
3836

3937
[project.optional-dependencies]
4038
dev = [

toller/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.3"
22

33
from .exceptions import (
44
TollerError,
@@ -9,9 +9,12 @@
99
)
1010
from .breakers import CircuitBreaker, CircuitState
1111
from .limiters import CallRateLimiter
12+
from .decorators import task
1213

1314
__all__ = [
1415
"__version__",
16+
# Decorators
17+
"task",
1518
# Exceptions
1619
"TollerError",
1720
"OpenCircuitError",

0 commit comments

Comments
 (0)