2022-11-18 18:27:01 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "connector-proxy-demo"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "An example showing how to use the Spiffworkflow-proxy's Flask Blueprint to make services available to Service Tasks."
|
|
|
|
authors = ["Dan <dan@sartography.com>"]
|
|
|
|
license = "LGPL"
|
|
|
|
readme = "README.md"
|
2022-11-22 19:27:43 +00:00
|
|
|
#packages = [{include = "connector_proxy_demo", from = "."}]
|
2022-11-18 18:27:01 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
Flask = "^2.2.2"
|
|
|
|
spiffworkflow-proxy = {git = "https://github.com/sartography/spiffworkflow-proxy"}
|
|
|
|
connector-aws = { git = "https://github.com/sartography/connector-aws.git"}
|
2022-11-22 19:27:43 +00:00
|
|
|
gunicorn = "^20.1.0"
|
2022-11-18 18:27:01 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
pythonpath = [
|
2022-11-22 18:43:15 +00:00
|
|
|
"."
|
2022-11-18 18:27:01 +00:00
|
|
|
]
|