mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
33 lines
638 B
TOML
33 lines
638 B
TOML
[project]
|
|
name = "argenta"
|
|
version = "0.5.0"
|
|
description = "Python library for creating TUI"
|
|
authors = [
|
|
{name = "kolo", email = "kolo.is.main@gmail.com"}
|
|
]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.11, <4.0"
|
|
dependencies = ["rich (>=14.0.0,<15.0.0)", "art (>=6.4,<7.0)", "pyreadline3 (>=3.5.4,<4.0.0)"]
|
|
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
".idea",
|
|
"venv",
|
|
".git",
|
|
"poetry.lock",
|
|
".__pycache__",
|
|
"tests"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
sphinx = "^8.2.3"
|
|
pydoc-markdown = "^4.8.2"
|
|
|