TeamspeakStats/pyproject.toml

28 lines
572 B
TOML
Raw Normal View History

[tool.poetry]
name = "tsstats"
version = "2.0.1"
description = "A simple Teamspeak stats generator"
authors = ["Thor77 <thor77@thor77.org>"]
license = "MIT"
readme = "README.rst"
[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"
[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"