aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 53270a9..5317250 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,9 +1,11 @@
1[tool.poetry] 1[tool.poetry]
2name = "video2story" 2name = "video2story"
3version = "1.0.0" 3version = "1.0.1"
4description = "Simple telegram story uploader" 4description = "Simple telegram story uploader"
5repository = "https://codeberg.org/igorechek06/video2story"
5authors = ["Tolmachev Igor <me@igorek.dev>"] 6authors = ["Tolmachev Igor <me@igorek.dev>"]
6readme = "README.md" 7readme = "README.md"
8packages = [{ include = "video2story" }]
7 9
8[tool.poetry.dependencies] 10[tool.poetry.dependencies]
9python = "^3.10" 11python = "^3.10"
@@ -14,6 +16,9 @@ mypy = "^1.11.2"
14isort = "^5.13.2" 16isort = "^5.13.2"
15black = "^24.8.0" 17black = "^24.8.0"
16 18
19[tool.poetry.scripts]
20video2story = "video2story:main"
21
17[tool.mypy] 22[tool.mypy]
18ignore_missing_imports = true 23ignore_missing_imports = true
19disallow_untyped_defs = true 24disallow_untyped_defs = true