Skip to content

Commit a821cc5

Browse files
committed
Publish package
1 parent 9119d9e commit a821cc5

5 files changed

Lines changed: 4 additions & 26 deletions

File tree

aiogram_cli/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
from aiogram_cli import _meta
2-
3-
__version__ = _meta.VERSION
1+
__version__ = "0.0.1a2"

aiogram_cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from aiogram_cli.loader import setup_plugins
66

77

8-
def main() -> Any: # pragma: no cover
8+
def main() -> Any:
99
app = typer.Typer()
1010
setup_plugins(app)
1111
return app()

build.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aiogram-cli"
3-
version = "0.0.1-alpha.1"
3+
version = "0.0.1-alpha.2"
44
description = "aiogram CLI"
55
authors = ["Alex Root Junior <jroot.junior@gmail.com>"]
66
license = "MIT"
@@ -19,7 +19,6 @@ keywords = [
1919
"aiogram",
2020
"cli",
2121
]
22-
build = "build.py"
2322

2423
[[tool.poetry.source]]
2524
name = "aiogram-dev"
@@ -33,7 +32,6 @@ typer = {extras = ["all"], version = "^0.2.1"}
3332
aiogram = {version = "^3.0.0-alpha.4", allow-prereleases = true}
3433

3534
[tool.poetry.dev-dependencies]
36-
typing_extensions = "^3.7.4"
3735
black = "^19.10b0"
3836
isort = "^4.3.21"
3937
flake8 = "^3.7.9"

0 commit comments

Comments
 (0)