Removes Unnecessary Dependencies

This commit is contained in:
2024-07-23 23:38:35 -03:00
parent dddaf06057
commit 0f3253c531
7 changed files with 368 additions and 402 deletions

View File

@@ -7,23 +7,22 @@ license = "GPL-2.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.24.3"
python = ">=3.9,<4.0"
numpy = "^1.26.4"
argparse = "^1.4.0"
setproctitle = "^1.3.2"
pyyaml = "^6.0"
dacite = "^1.8.1"
nptyping = "^2.5.0"
poethepoet = "^0.20.0"
pre-commit = "^3.3.2"
isort = "^5.12.0"
black = "^23.3.0"
[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"
[build-system]
requires = ["poetry-core"]