File size: 476 Bytes
d99ea12 76781ed d99ea12 |
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 |
[project]
name = "wordle"
version = "0.1.0"
description = "A simple wordle clone with fasthtml"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"python-fasthtml>=0.4.6",
]
# [tool.uv.sources]
# python-fasthtml = { git = "https://github.com/AnswerDotAI/fasthtml.git" }
[tool.uv]
dev-dependencies = [
"ruff>=0.6.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
|