2022-10-27 13:15:56 +00:00
|
|
|
[tool.poetry]
|
2023-03-06 15:12:54 +00:00
|
|
|
name = "spiffworkflow-arena"
|
2022-10-27 13:15:56 +00:00
|
|
|
version = "0.0.0"
|
|
|
|
description = "Spiffworkflow Arena"
|
|
|
|
authors = ["Jason Lantz <sartography@users.noreply.github.com>"]
|
|
|
|
license = "MIT"
|
2023-03-06 15:12:54 +00:00
|
|
|
readme = "README.md"
|
2022-10-27 13:15:56 +00:00
|
|
|
homepage = "https://github.com/sartography/spiffworkflow-arena"
|
|
|
|
repository = "https://github.com/sartography/spiffworkflow-arena"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 1 - Planning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-11-09 18:45:16 +00:00
|
|
|
python = ">=3.11,<3.12"
|
2022-10-27 13:15:56 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pre-commit = "^2.20.0"
|
|
|
|
flake8 = "^4.0.1"
|
|
|
|
black = ">=21.10b0"
|
|
|
|
flake8-bandit = "^2.1.2"
|
2023-05-27 00:01:08 +00:00
|
|
|
ruff = "^0.0.270"
|
2022-10-27 13:15:56 +00:00
|
|
|
|
|
|
|
# 1.7.3 broke us. https://github.com/PyCQA/bandit/issues/841
|
|
|
|
bandit = "1.7.2"
|
|
|
|
|
|
|
|
flake8-bugbear = "^22.10.25"
|
|
|
|
flake8-docstrings = "^1.6.0"
|
|
|
|
flake8-rst-docstrings = "^0.2.7"
|
2023-03-28 20:19:31 +00:00
|
|
|
reorder-python-imports = "^3.9.0"
|
|
|
|
pre-commit-hooks = "^4.0.1"
|
|
|
|
pyupgrade = "^3.1.0"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
tomli = "^2.0.1"
|