-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
952 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,23 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "namehackclub" | ||
version = "1.0.0" | ||
description = "An exclusive club of geeks that own the domain hack to their name." | ||
authors = ["Yuval Adam <[email protected]>"] | ||
readme = "README.md" | ||
packages = [ | ||
{ include = "cli" } | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"click>=8.1.7", | ||
"jinja2>=3.1.4", | ||
"unidecode>=1.3.8", | ||
"ymlstash>=1.2.1", | ||
] | ||
|
||
[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" | ||
[dependency-groups] | ||
dev = [ | ||
"aiohttp>=3.10.10", | ||
"requests>=2.32.3", | ||
] | ||
|
||
[tool.poetry.scripts] | ||
[project.scripts] | ||
cli = "cli:cli" | ||
build = "cli.build:build" | ||
serve = "cli.serve:serve" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
serve = "cli.serve:serve" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
click==8.1.7 ; python_version >= "3.8" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and platform_system == "Windows" | ||
jinja2==3.1.4 ; python_version >= "3.8" and python_version < "4.0" | ||
markupsafe==2.1.5 ; python_version >= "3.8" and python_version < "4.0" | ||
pyyaml==6.0.1 ; python_version >= "3.8" and python_version < "4.0" | ||
unidecode==1.3.8 ; python_version >= "3.8" and python_version < "4.0" | ||
ymlstash==1.2.0 ; python_version >= "3.8" and python_version < "4.0" | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile pyproject.toml -o requirements.txt | ||
click==8.1.7 | ||
# via namehackclub (pyproject.toml) | ||
jinja2==3.1.4 | ||
# via namehackclub (pyproject.toml) | ||
markupsafe==2.1.5 | ||
# via jinja2 | ||
pyyaml==6.0.1 | ||
# via ymlstash | ||
unidecode==1.3.8 | ||
# via namehackclub (pyproject.toml) | ||
ymlstash==1.2.1 | ||
# via namehackclub (pyproject.toml) |
Oops, something went wrong.