49 lines
959 B
TOML
49 lines
959 B
TOML
[tool.poetry]
|
|
name = "diceplayer"
|
|
version = "0.0.0"
|
|
description = ""
|
|
authors = ["Vitor Hideyoshi <vitor.h.n.batista@gmail.com>", "Herbert Georg <hcgeorg@ufg.br>"]
|
|
license = "GPL-2.0-only"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<4.0"
|
|
numpy = "^1.26.4"
|
|
argparse = "^1.4.0"
|
|
setproctitle = "^1.3.2"
|
|
pyyaml = "^6.0"
|
|
nptyping = "^2.5.0"
|
|
dunamai = "^1.21.2"
|
|
|
|
[tool.poetry.scripts]
|
|
diceplayer = "diceplayer.__main__:main"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
coverage = "^7.2.7"
|
|
isort = "^5.13.2"
|
|
black = "^24.4.2"
|
|
pre-commit = "^3.7.1"
|
|
poethepoet = "^0.27.0"
|
|
|
|
[tool.poetry-dynamic-versioning]
|
|
enable = true
|
|
vcs = "git"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry_dynamic_versioning.backend"
|
|
|
|
[tool.poe.tasks]
|
|
hooks = "pre-commit install --config .pre-commit-config.yaml"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 79
|
|
sections=[
|
|
"FUTURE",
|
|
"FIRSTPARTY",
|
|
"LOCALFOLDER",
|
|
"THIRDPARTY",
|
|
"STDLIB",
|
|
]
|