23 lines
487 B
TOML
23 lines
487 B
TOML
|
[project]
|
||
|
name = "stargem"
|
||
|
version = "1.0.0"
|
||
|
description = ""
|
||
|
authors = [
|
||
|
{name = "Erick Ruiz de Chavez",email = "erick@fastmail.net"}
|
||
|
]
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.12"
|
||
|
dependencies = [
|
||
|
"jinja2 (>=3.1.5,<4.0.0)",
|
||
|
"python-slugify (>=8.0.4,<9.0.0)",
|
||
|
"pyyaml (>=6.0.2,<7.0.0)",
|
||
|
"typer (>=0.15.1,<0.16.0)"
|
||
|
]
|
||
|
|
||
|
[project.scripts]
|
||
|
stargem = "stargem.main:app"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|