2024-03-31 19:06:34 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "inni"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Modular system to perform tasks surrounding log-in and log-out."
|
|
|
|
authors = ["Ceda EI <ceda_ei@webionite.com>"]
|
|
|
|
license = "GPL-3.0"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
2024-04-01 20:23:44 +02:00
|
|
|
click = "^8.1.7"
|
|
|
|
rich = "^13.7.1"
|
|
|
|
jinja2 = "^3.1.3"
|
2024-04-07 16:43:06 +02:00
|
|
|
skpy = "^0.10.6"
|
2024-03-31 19:06:34 +02:00
|
|
|
|
2024-04-01 20:23:44 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
inni = "inni.cli:inni"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
ipdb = "^0.13.13"
|
2024-03-31 19:06:34 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-04-01 20:31:27 +02:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|