2022-10-12 14:23:45 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "flask-bpmn"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = "Flask Bpmn"
|
|
|
|
authors = ["Jason Lantz <sartography@users.noreply.github.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.rst"
|
|
|
|
homepage = "https://github.com/sartography/flask-bpmn"
|
|
|
|
repository = "https://github.com/sartography/flask-bpmn"
|
|
|
|
documentation = "https://flask-bpmn.readthedocs.io"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 1 - Planning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.urls]
|
|
|
|
Changelog = "https://github.com/sartography/flask-bpmn/releases"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.7"
|
|
|
|
click = "^8.0.1"
|
|
|
|
flask = "*"
|
|
|
|
flask-admin = "*"
|
|
|
|
flask-bcrypt = "*"
|
|
|
|
flask-cors = "*"
|
|
|
|
flask-mail = "*"
|
|
|
|
flask-marshmallow = "*"
|
|
|
|
flask-migrate = "*"
|
|
|
|
flask-restful = "*"
|
|
|
|
werkzeug = "*"
|
|
|
|
spiffworkflow = "*"
|
|
|
|
sentry-sdk = "*"
|
2022-10-24 21:53:04 +00:00
|
|
|
sphinx-autoapi = "^2.0.0"
|
2022-11-09 18:45:16 +00:00
|
|
|
greenlet = "^2.0.1"
|
2022-10-12 14:23:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^6.2.5"
|
2022-10-28 17:42:23 +00:00
|
|
|
coverage = {extras = ["toml"], version = "^6.5"}
|
2022-10-24 21:53:04 +00:00
|
|
|
safety = "^2.3.1"
|
2022-11-18 15:03:37 +00:00
|
|
|
mypy = "^0.991"
|
2022-10-12 14:23:45 +00:00
|
|
|
typeguard = "^2.13.2"
|
2022-10-24 21:53:04 +00:00
|
|
|
xdoctest = {extras = ["colors"], version = "^1.1.0"}
|
2022-10-12 14:23:45 +00:00
|
|
|
sphinx = "^4.3.0"
|
|
|
|
sphinx-autobuild = ">=2021.3.14"
|
|
|
|
pre-commit = "^2.20.0"
|
|
|
|
flake8 = "^4.0.1"
|
|
|
|
black = ">=21.10b0"
|
|
|
|
flake8-bandit = "^2.1.2"
|
|
|
|
|
2022-10-19 14:31:39 +00:00
|
|
|
# require git version here to avoid importlib but do not require this version for other apps
|
|
|
|
spiffworkflow = {git = "https://github.com/sartography/SpiffWorkflow", rev = "main"}
|
|
|
|
|
2022-10-12 14:23:45 +00:00
|
|
|
# 1.7.3 broke us. https://github.com/PyCQA/bandit/issues/841
|
|
|
|
bandit = "1.7.2"
|
|
|
|
|
2022-10-27 18:57:30 +00:00
|
|
|
flake8-bugbear = "^22.10.27"
|
2022-10-12 14:23:45 +00:00
|
|
|
flake8-docstrings = "^1.6.0"
|
2022-11-18 15:03:37 +00:00
|
|
|
flake8-rst-docstrings = "^0.3.0"
|
2022-10-24 21:53:04 +00:00
|
|
|
pep8-naming = "^0.13.2"
|
2022-10-12 14:23:45 +00:00
|
|
|
darglint = "^1.8.1"
|
2022-10-26 17:40:39 +00:00
|
|
|
reorder-python-imports = "^3.9.0"
|
2022-10-12 14:23:45 +00:00
|
|
|
pre-commit-hooks = "^4.3.0"
|
|
|
|
sphinx-click = "^4.3.0"
|
|
|
|
Pygments = "^2.13.0"
|
2022-11-11 15:38:51 +00:00
|
|
|
pyupgrade = "^3.2.2"
|
2022-10-12 14:23:45 +00:00
|
|
|
furo = ">=2021.11.12"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
flask-bpmn = "flask_bpmn.__main__:main"
|
|
|
|
|
|
|
|
[tool.coverage.paths]
|
|
|
|
source = ["src", "*/site-packages"]
|
|
|
|
tests = ["tests", "*/tests"]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
branch = true
|
|
|
|
source = ["flask_bpmn", "tests"]
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
show_missing = true
|
|
|
|
fail_under = 50
|
|
|
|
|
2022-10-19 14:31:39 +00:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
# ignore deprecation warnings from various packages that we don't control
|
|
|
|
filterwarnings = [
|
|
|
|
# note the use of single quote below to denote "raw" strings in TOML
|
|
|
|
# kombu/utils/compat.py:82
|
|
|
|
'ignore:SelectableGroups dict interface is deprecated. Use select.',
|
|
|
|
# flask_sqlalchemy/__init__.py:14
|
|
|
|
"ignore:'_app_ctx_stack' is deprecated and will be removed in Flask 2.3",
|
|
|
|
]
|
|
|
|
|
2022-10-12 14:23:45 +00:00
|
|
|
[tool.mypy]
|
|
|
|
strict = true
|
|
|
|
disallow_any_generics = false
|
|
|
|
warn_unreachable = true
|
|
|
|
pretty = true
|
|
|
|
show_column_numbers = true
|
|
|
|
show_error_codes = true
|
|
|
|
show_error_context = true
|
|
|
|
|
|
|
|
# We get 'error: Module has no attribute "set_context"' for sentry-sdk without this option
|
|
|
|
implicit_reexport = true
|
|
|
|
|
|
|
|
# allow for subdirs to NOT require __init__.py
|
|
|
|
namespace_packages = true
|
|
|
|
explicit_package_bases = false
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|