diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-16 12:39:41 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-18 13:12:23 +0200 |
| commit | d9901fe020a419b40349ee9565fe1daa1bd225bd (patch) | |
| tree | e6b0b0f78e4e21c2c0c8797ed4e0e0dbfc115b9d | |
| parent | 92e439d2da3556b8fb8249018385ab04d7ae6c6c (diff) | |
Initial pyproject.toml
| -rw-r--r-- | pyproject.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..51d0f9a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "namehackclub" +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" + +[tool.poetry.dependencies] +python = "^3.8" +jinja2 = "^3.1.4" +ymlstash = "^1.2.0" +click = "^8.1.7" + +[tool.poetry.group.dev.dependencies] +unidecode = "^1.3.8" +aiohttp = "^3.9.5" +requests = "^2.31.0" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |
