File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " toller"
7- version = " 0.0.2 "
7+ version = " 0.0.3 "
88description = " Intelligent async flow controller for Python - making complex asyncio workflows manageable"
99readme = " README.md"
1010requires-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 ]
4038dev = [
Original file line number Diff line number Diff line change 1- __version__ = "0.0.1 "
1+ __version__ = "0.0.3 "
22
33from .exceptions import (
44 TollerError ,
99)
1010from .breakers import CircuitBreaker , CircuitState
1111from .limiters import CallRateLimiter
12+ from .decorators import task
1213
1314__all__ = [
1415 "__version__" ,
16+ # Decorators
17+ "task" ,
1518 # Exceptions
1619 "TollerError" ,
1720 "OpenCircuitError" ,
You can’t perform that action at this time.
0 commit comments