24 lines
410 B
TOML
24 lines
410 B
TOML
[project]
|
|
name = "ctf"
|
|
version = "0.1.0"
|
|
description = "An AI enhanced CTF toolchain"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"platformdirs>=4.9.4",
|
|
"toml>=0.10.2",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project.scripts]
|
|
ctf = "ctf.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ctf"]
|
|
|
|
[tool.pyright]
|
|
extraPaths = ["src"]
|