blob: 6c7f3cc092d02daa80bfab66b48fa20417e3c2e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[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"
packages = [
{ include = "cli" }
]
[tool.poetry.dependencies]
python = "^3.8"
jinja2 = "^3.1.4"
ymlstash = "^1.2.0"
click = "^8.1.7"
unidecode = "^1.3.8"
[tool.poetry.group.dev.dependencies]
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"
|