mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
37 lines
647 B
TOML
37 lines
647 B
TOML
[project]
|
|
name = "argenta"
|
|
version = "0.3.4"
|
|
description = "python library for creating custom shells"
|
|
authors = [
|
|
{name = "kolo",email = "kolo.is.main@gmail.com"}
|
|
]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [] # no dependencies
|
|
|
|
|
|
[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]
|
|
art = "^6.4"
|
|
rich = "^13.9.4"
|
|
numpy = "^2.2.2"
|
|
word2number = "^1.1"
|
|
numexpr = "^2.10.2"
|
|
requests = "^2.32.3"
|
|
|