mirror of
https://github.com/harivansh-afk/veet-code.git
synced 2026-04-15 03:00:48 +00:00
26 lines
490 B
TOML
26 lines
490 B
TOML
[project]
|
|
name = "veetcode"
|
|
version = "0.1.0"
|
|
description = "Terminal-based LeetCode practice with auto-testing"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"textual>=1.0.0",
|
|
"watchdog>=4.0.0",
|
|
"typer>=0.12.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
veetcode = "veetcode.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=8.0.0",
|
|
"mypy>=1.0.0",
|
|
"ruff>=0.4.0",
|
|
]
|