initial import

This commit is contained in:
2024-11-01 09:59:45 +01:00
commit e102cfa9c8
7 changed files with 1414 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[tool.poetry]
name = "myice"
version = "0.1.0"
description = ""
authors = ["Rene Luria <rene.luria@infomaniak.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
typer = {extras = ["all"], version = "^0.12.5"}
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
myice = 'myice.myice:app'