TeamspeakStats/pyproject.toml

32 lines
669 B
TOML
Raw Normal View History

[tool.poetry]
name = "tsstats"
2023-01-14 12:40:14 -05:00
version = "2.0.2"
description = "A simple Teamspeak stats generator"
authors = ["Thor77 <thor77@thor77.org>"]
license = "MIT"
readme = "README.rst"
2023-01-14 06:48:58 -05:00
include = ["tsstats/templates/*.jinja2"]
[tool.poetry.dependencies]
python = "^3.10"
jinja2 = "^3.1.2"
pendulum = "1.5.1"
2023-01-14 06:43:38 -05:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
beautifulsoup4 = "^4.11.1"
pylama = "^8.4.1"
2023-01-14 06:43:38 -05:00
poethepoet = "^0.18.0"
pytest-cov = "^4.0.0"
2023-01-14 06:48:58 -05:00
[tool.poetry.scripts]
tsstats = 'tsstats.__main__:cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-01-14 06:43:38 -05:00
[tool.poe.tasks]
test = "pytest --cov=tsstats tsstats"
lint = "pylama tsstats"