worthless-launcher/pyproject.toml

24 lines
493 B
TOML
Raw Normal View History

2022-09-17 18:24:00 +01:00
[tool.poetry]
name = "worthless"
version = "3.0.0"
description = "A worthless CLI launcher written in Python"
authors = ["tretrauit <tretrauit@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.1"
appdirs = "^1.4.4"
detools = "^0.51.0"
2022-09-17 18:24:00 +01:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
2022-09-20 11:16:16 +01:00
[tool.poetry.scripts]
worthless = 'worthless.cli:main'
2022-09-17 18:24:00 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"