20 lines
325 B
TOML
20 lines
325 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"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.6.7",
|
|
]
|