2022-10-12 14:22:22 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "spiffworkflow-backend"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = "Spiffworkflow Backend"
|
|
|
|
authors = ["Jason Lantz <sartography@users.noreply.github.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.rst"
|
|
|
|
homepage = "https://github.com/sartography/spiffworkflow-backend"
|
|
|
|
repository = "https://github.com/sartography/spiffworkflow-backend"
|
|
|
|
documentation = "https://spiffworkflow-backend.readthedocs.io"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 1 - Planning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.urls]
|
|
|
|
Changelog = "https://github.com/sartography/spiffworkflow-backend/releases"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-05-27 22:17:51 +00:00
|
|
|
python = ">=3.10,<3.12"
|
2022-10-12 14:22:22 +00:00
|
|
|
click = "^8.0.1"
|
|
|
|
flask = "2.2.2"
|
|
|
|
flask-admin = "*"
|
|
|
|
flask-bcrypt = "*"
|
|
|
|
flask-cors = "*"
|
2023-05-27 22:17:51 +00:00
|
|
|
flask-jwt-extended = "^4.4.4"
|
2022-10-12 14:22:22 +00:00
|
|
|
flask-mail = "*"
|
|
|
|
flask-marshmallow = "*"
|
|
|
|
flask-migrate = "*"
|
|
|
|
flask-restful = "*"
|
2023-05-27 22:17:51 +00:00
|
|
|
flask-simple-crypt = "^0.3.3"
|
2022-10-12 14:22:22 +00:00
|
|
|
werkzeug = "*"
|
2023-05-10 19:42:07 +00:00
|
|
|
SpiffWorkflow = {git = "https://github.com/sartography/SpiffWorkflow", rev = "main"}
|
2023-03-16 16:50:52 +00:00
|
|
|
# SpiffWorkflow = {git = "https://github.com/sartography/SpiffWorkflow", rev = "6cad2981712bb61eca23af1adfafce02d3277cb9"}
|
2023-05-10 14:49:39 +00:00
|
|
|
# SpiffWorkflow = {develop = true, path = "../../spiffworkflow/" }
|
2022-10-21 20:28:09 +00:00
|
|
|
sentry-sdk = "^1.10"
|
2023-05-18 22:42:40 +00:00
|
|
|
# sphinx-autoapi = "^2.0"
|
2022-11-21 02:31:45 +00:00
|
|
|
mysql-connector-python = "*"
|
2022-10-12 14:22:22 +00:00
|
|
|
pytest-flask = "^1.2.0"
|
|
|
|
pytest-flask-sqlalchemy = "^1.1.0"
|
|
|
|
psycopg2 = "^2.9.3"
|
2022-10-12 19:28:52 +00:00
|
|
|
typing-extensions = "^4.4.0"
|
2023-03-28 18:58:16 +00:00
|
|
|
|
|
|
|
# pinned to higher than 65.5.0 because of a vulnerability
|
|
|
|
# and to lower than 67 because i didn't feel like addressing
|
|
|
|
# new deprecation warnings. we don't need this library explicitly,
|
|
|
|
# but at one time it was pulled in by various libs we depend on.
|
|
|
|
setuptools = "^65.5.1"
|
|
|
|
|
2022-10-12 14:22:22 +00:00
|
|
|
connexion = {extras = [ "swagger-ui",], version = "^2"}
|
|
|
|
lxml = "^4.9.1"
|
|
|
|
marshmallow-enum = "^1.5.1"
|
2022-10-21 21:28:37 +00:00
|
|
|
PyJWT = "^2.6.0"
|
2022-10-12 14:22:22 +00:00
|
|
|
gunicorn = "^20.1.0"
|
2022-11-22 02:15:48 +00:00
|
|
|
APScheduler = "*"
|
2022-10-12 14:22:22 +00:00
|
|
|
Jinja2 = "^3.1.2"
|
2022-11-09 18:45:16 +00:00
|
|
|
RestrictedPython = "^6.0"
|
2022-10-12 14:22:22 +00:00
|
|
|
Flask-SQLAlchemy = "^3"
|
|
|
|
|
2022-10-21 14:36:41 +00:00
|
|
|
# type hinting stuff
|
|
|
|
# these need to be in the normal (non dev-dependencies) section
|
|
|
|
# because if not then poetry export won't have them and nox -s mypy --pythons 3.10
|
|
|
|
# will fail
|
2023-05-27 22:17:51 +00:00
|
|
|
types-dateparser = "^1.1.4.1"
|
2022-10-21 14:36:41 +00:00
|
|
|
types-Werkzeug = "^1.0.9"
|
|
|
|
types-PyYAML = "^6.0.12"
|
|
|
|
types-Flask = "^1.1.6"
|
|
|
|
types-requests = "^2.28.6"
|
|
|
|
types-pytz = "^2022.1.1"
|
|
|
|
|
|
|
|
# https://github.com/dropbox/sqlalchemy-stubs/pull/251
|
|
|
|
# someday get off github
|
|
|
|
# sqlalchemy-stubs = "^0.4"
|
|
|
|
# sqlalchemy-stubs = { git = "https://github.com/dropbox/sqlalchemy-stubs.git", rev = "master" }
|
|
|
|
# sqlalchemy-stubs = {develop = true, path = "/Users/kevin/projects/github/sqlalchemy-stubs"}
|
|
|
|
# for now use my fork
|
|
|
|
sqlalchemy-stubs = { git = "https://github.com/burnettk/sqlalchemy-stubs.git", rev = "scoped-session-delete" }
|
2022-10-21 20:18:25 +00:00
|
|
|
simplejson = "^3.17.6"
|
2022-11-02 15:35:10 +00:00
|
|
|
pytz = "^2022.6"
|
|
|
|
dateparser = "^1.1.2"
|
2023-03-12 22:20:29 +00:00
|
|
|
cryptography = "^39.0.2"
|
2023-03-23 02:40:56 +00:00
|
|
|
prometheus-flask-exporter = "^0.22.3"
|
2022-10-21 14:36:41 +00:00
|
|
|
|
2023-03-28 19:56:00 +00:00
|
|
|
sqlalchemy = "^2.0.7"
|
2023-03-28 20:55:13 +00:00
|
|
|
marshmallow-sqlalchemy = "^0.29.0"
|
2023-05-04 18:15:13 +00:00
|
|
|
spiff-element-units = "^0.3.0"
|
2022-10-12 14:22:22 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2023-03-06 15:12:54 +00:00
|
|
|
pytest = "^7.1.2"
|
2022-10-12 14:22:22 +00:00
|
|
|
coverage = {extras = ["toml"], version = "^6.1"}
|
2023-05-27 22:17:51 +00:00
|
|
|
safety = "^2.3.5"
|
2022-10-12 14:22:22 +00:00
|
|
|
mypy = ">=0.961"
|
2023-05-01 19:26:29 +00:00
|
|
|
typeguard = "^3"
|
2022-10-12 14:22:22 +00:00
|
|
|
xdoctest = {extras = ["colors"], version = "^1.0.1"}
|
|
|
|
pre-commit = "^2.20.0"
|
|
|
|
black = ">=21.10b0"
|
2023-05-27 00:01:08 +00:00
|
|
|
ruff = "^0.0.270"
|
2022-10-12 14:22:22 +00:00
|
|
|
|
|
|
|
# 1.7.3 broke us. https://github.com/PyCQA/bandit/issues/841
|
2023-03-06 15:12:54 +00:00
|
|
|
bandit = "1.7.2"
|
2022-10-12 14:22:22 +00:00
|
|
|
|
|
|
|
# flask-sqlalchemy-stubs = "^0.2"
|
|
|
|
pre-commit-hooks = "^4.0.1"
|
|
|
|
Pygments = "^2.10.0"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
spiffworkflow-backend = "spiffworkflow_backend.__main__:main"
|
|
|
|
|
|
|
|
[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_marshmallow/__init__.py:34
|
|
|
|
# marshmallow_sqlalchemy/convert.py:17
|
|
|
|
'ignore:distutils Version classes are deprecated. Use packaging.version instead.',
|
|
|
|
# connexion/spec.py:50
|
|
|
|
'ignore:Passing a schema to Validator.iter_errors is deprecated and will be removed in a future release',
|
|
|
|
# connexion/decorators/validation.py:16
|
|
|
|
'ignore:Accessing jsonschema.draft4_format_checker is deprecated and will be removed in a future release.',
|
|
|
|
# connexion/apis/flask_api.py:236
|
|
|
|
"ignore:'_request_ctx_stack' is deprecated and will be removed in Flask 2.3",
|
|
|
|
"ignore:Setting 'json_encoder' on the app or a blueprint is deprecated and will be removed in Flask 2.3",
|
|
|
|
"ignore:'JSONEncoder' is deprecated and will be removed in Flask 2.3",
|
2023-03-17 02:42:35 +00:00
|
|
|
"ignore:'app.json_encoder' is deprecated and will be removed in Flask 2.3",
|
|
|
|
# SpiffWorkflow/bpmn/PythonScriptEngineEnvironment.py
|
|
|
|
'ignore:The usage of Box has been deprecated'
|
2022-10-12 14:22:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.paths]
|
|
|
|
source = ["src", "*/site-packages"]
|
|
|
|
tests = ["tests", "*/tests"]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
branch = true
|
|
|
|
source = ["spiffworkflow_backend", "tests"]
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
show_missing = true
|
|
|
|
fail_under = 50
|
|
|
|
|
|
|
|
[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
|
|
|
|
plugins = "sqlmypy"
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2023-05-26 17:07:18 +00:00
|
|
|
[tool.ruff]
|
2023-05-27 00:01:08 +00:00
|
|
|
select = [
|
2023-05-27 22:17:51 +00:00
|
|
|
"B", # flake8-bugbear
|
|
|
|
"E", # pycodestyle error
|
2023-05-27 18:59:52 +00:00
|
|
|
"F", # pyflakes
|
2023-05-27 22:17:51 +00:00
|
|
|
# "N", # pep8-naming
|
|
|
|
# "PL", # pylint
|
|
|
|
# "S", # flake8-bandit
|
2023-05-27 18:59:52 +00:00
|
|
|
"UP", # pyupgrade
|
2023-05-27 22:17:51 +00:00
|
|
|
"W", # pycodestyle warning
|
2023-05-27 18:59:52 +00:00
|
|
|
"I001" # isort
|
2023-05-27 00:01:08 +00:00
|
|
|
]
|
2023-05-26 17:07:18 +00:00
|
|
|
line-length = 130
|
|
|
|
|
2023-05-27 22:17:51 +00:00
|
|
|
# target python 3.10
|
|
|
|
target-version = "py310"
|
|
|
|
|
2023-05-26 17:07:18 +00:00
|
|
|
[tool.ruff.per-file-ignores]
|
|
|
|
"migrations/versions/*.py" = ["E501"]
|
|
|
|
|
2023-05-27 00:01:08 +00:00
|
|
|
[tool.ruff.isort]
|
|
|
|
force-single-line = true
|
|
|
|
|
2022-10-12 14:22:22 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|