python-voting/pyproject.toml

24 lines
493 B
TOML
Raw Permalink Normal View History

2023-04-02 14:31:25 +00:00
[tool.poetry]
name = "voting"
version = "0.1.0"
description = ""
authors = ["Brian Wiborg <baccenfutter@c-base.org>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
arrow = "^1.2.3"
typer = {extras = ["all"], version = "^0.7.0"}
simple-term-menu = "^1.6.1"
2023-04-02 14:31:25 +00:00
[tool.poetry.group.dev.dependencies]
ipython = "^8.12.0"
nose2 = "^0.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
voting = 'voting.cli.voting:app'