diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-17 12:26:14 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-18 13:12:23 +0200 |
| commit | 1a34d1bbde800d540c4e3f1e3dbe22678903ad86 (patch) | |
| tree | 7a6ca72c2e313a2f4a3527239014bb59a9159608 /pyproject.toml | |
| parent | d9901fe020a419b40349ee9565fe1daa1bd225bd (diff) | |
Migrate all scripts to poetry
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 51d0f9a..1f35674 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,9 @@ version = "1.0.0" description = "An exclusive club of geeks that own the domain hack to their name." authors = ["Yuval Adam <_@yuv.al>"] readme = "README.md" +packages = [ + { include = "cli" } +] [tool.poetry.dependencies] python = "^3.8" @@ -16,6 +19,12 @@ unidecode = "^1.3.8" aiohttp = "^3.9.5" requests = "^2.31.0" +[tool.poetry.scripts] +cli = "cli:cli" +build = "cli.build:build" +serve = "cli.serve:serve" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" + |
