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>"]
|
2024-01-29 15:16:28 +00:00
|
|
|
license = "LGPL"
|
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 = [
|
2024-01-29 15:16:28 +00:00
|
|
|
"Development Status :: 4 - Beta",
|
2022-10-27 13:15:56 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-01-10 16:42:49 +00:00
|
|
|
python = ">=3.11,<3.13"
|
2022-10-27 13:15:56 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2024-02-21 14:46:52 +00:00
|
|
|
pre-commit = "^3.6.2"
|
2022-10-27 13:15:56 +00:00
|
|
|
flake8 = "^4.0.1"
|
|
|
|
black = ">=21.10b0"
|
|
|
|
flake8-bandit = "^2.1.2"
|
2024-02-15 15:02:51 +00:00
|
|
|
ruff = "^0.2.1"
|
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"
|
2024-02-28 15:03:38 +00:00
|
|
|
reorder-python-imports = "^3.12.0"
|
2024-02-27 15:07:28 +00:00
|
|
|
pre-commit-hooks = "^4.5.0"
|
2023-03-28 20:19:31 +00:00
|
|
|
pyupgrade = "^3.1.0"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
tomli = "^2.0.1"
|
2024-03-07 19:40:24 +00:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 130
|