Skip to content

Commit 5b4be02

Browse files
committed
Updated project structure.
Signed-off-by: Pavel Kirilin <[email protected]>
1 parent d6dec91 commit 5b4be02

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This lirary provides you with aio-pika broker for taskiq.
44

55
Usage:
66
```python
7-
from taskiq.brokers.aio_pika import AioPikaBroker
7+
from taskiq_aio_pika import AioPikaBroker
88

99
broker = AioPikaBroker()
1010

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ version = "0.0.1"
44
description = ""
55
authors = ["Pavel Kirilin <[email protected]>"]
66
readme = "README.md"
7-
packages = [{ include = "taskiq", from = "taskiq_aio_pika" }]
87

98
[tool.poetry.dependencies]
109
python = "^3.7"

taskiq_aio_pika/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
__version__ = "0.1.0"
1+
"""Taskiq integration with aio-pika."""
2+
from taskiq_aio_pika.aio_pika_broker import AioPikaBroker
3+
4+
__all__ = ["AioPikaBroker"]

0 commit comments

Comments
 (0)