pomme/pyproject.toml
koalp ead9725017
feat: add terminal ui
The time was printed on every line.

A basic terminal UI that update the time instead of writing it again on
the next line have been added.
2020-03-02 06:01:11 +01:00

30 lines
524 B
TOML

[tool.poetry]
name = "pomme"
version = "0.1.2"
description = "proof of concept for pomme timer"
authors = ["koalp <koalp@alpaga.dev>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.8"
click = "^7.0"
toml = "^0.10.0"
blessed = "^1.5"
[tool.poetry.dev-dependencies]
mypy = "^0.761"
flake8 = "^3.7.9"
pytest = "^5.3.5"
black = "^19.10b0"
[tool.poetry.scripts]
pomme = "pomme.pomme:pomme"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"