mirror of
https://github.com/harivansh-afk/veet-code.git
synced 2026-04-17 18:02:36 +00:00
init
This commit is contained in:
commit
2e800fc2a8
9 changed files with 58 additions and 0 deletions
26
pyproject.toml
Normal file
26
pyproject.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[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 = [
|
||||
"pytermgui>=7.7.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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue