init: auto-reverse CLI with Python 3.14t, uv, and Nix flakes
Set up project scaffolding with free-threaded Python 3.14, uv for package management, and Nix flakes for dev tooling (treefmt-nix with nixfmt/ruff, pyright strict mode, direnv integration). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
[project]
|
||||
name = "auto-reverse"
|
||||
version = "0.1.0"
|
||||
description = "Automated reverse engineering CLI tool"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "Wong Ding Feng", email = "dingfengwong@gmail.com" }
|
||||
]
|
||||
requires-python = ">=3.14"
|
||||
dependencies = []
|
||||
|
||||
[project.scripts]
|
||||
auto-reverse = "auto_reverse:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.ruff]
|
||||
target-version = "py314"
|
||||
line-length = 120
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "SIM", "TCH", "RUF"]
|
||||
|
||||
[tool.pyright]
|
||||
pythonVersion = "3.14"
|
||||
typeCheckingMode = "strict"
|
||||
venvPath = "."
|
||||
venv = ".venv"
|
||||
Reference in New Issue
Block a user