tito/pyproject.toml

23 lines
383 B
TOML

[project]
name = "tito"
version = "0.1.0"
description = "An attempt at a stock trader"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
[project.scripts]
hello = "hello_world:hello"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tito"]
[dependency-groups]
dev = [
"ruff>=0.6.7",
]