summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 1b3a14b0b6b3b32c6bdedb1622703363115ca6a7 (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
30
[project]
name = "namehackclub"
version = "1.0.0"
description = "An exclusive club of geeks that own the domain hack to their name."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
    "click>=8.1.7",
    "jinja2>=3.1.4",
    "unidecode>=1.3.8",
    "ymlstash>=1.2.1",
]


[dependency-groups]
dev = [
    "aiohttp>=3.10.10",
    "requests>=2.32.3",
]

[tool.uv]
package = true

[tool.setuptools.packages.find]
include = ["cli"]

[project.scripts]
cli = "cli:cli"
build = "cli.build:build"
serve = "cli.serve:serve"