mirror of
https://github.com/harivansh-afk/veet-code.git
synced 2026-04-15 08:03:46 +00:00
init
This commit is contained in:
commit
2e800fc2a8
9 changed files with 58 additions and 0 deletions
28
.gitignore
vendored
Normal file
28
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
.venv/
|
||||
venv/
|
||||
ENV/
|
||||
thoughts/
|
||||
|
||||
# UV
|
||||
.uv/
|
||||
uv.lock
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Project specific
|
||||
problems/
|
||||
.solved.json
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
1
.python-version
Normal file
1
.python-version
Normal file
|
|
@ -0,0 +1 @@
|
|||
3.13
|
||||
0
README.md
Normal file
0
README.md
Normal file
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",
|
||||
]
|
||||
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
0
veetcode/__init__.py
Normal file
0
veetcode/__init__.py
Normal file
1
veetcode/app.py
Normal file
1
veetcode/app.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Placeholder
|
||||
1
veetcode/cli.py
Normal file
1
veetcode/cli.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Placeholder
|
||||
1
veetcode/watcher.py
Normal file
1
veetcode/watcher.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Placeholder
|
||||
Loading…
Add table
Add a link
Reference in a new issue