connector-proxy-demo/pyproject.toml

27 lines
943 B
TOML
Raw Permalink Normal View History

2022-11-10 19:34:12 +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"
#packages = [{include = "connector_proxy_demo", from = "."}]
2022-11-10 19:34:12 +00:00
[tool.poetry.dependencies]
2023-02-08 17:07:06 +00:00
python = "^3.11"
2022-11-10 19:34:12 +00:00
Flask = "^2.2.2"
spiffworkflow-proxy = {git = "https://github.com/sartography/spiffworkflow-proxy"}
connector-aws = { git = "https://github.com/sartography/connector-aws.git"}
2023-02-08 17:07:06 +00:00
connector-http = {git = "https://github.com/sartography/connector-http.git"}
2023-02-14 21:49:55 +00:00
connector-slack = {git = "https://github.com/sartography/connector-slack.git"}
2023-06-29 19:47:58 +00:00
connector-smtp = {git = "https://github.com/sartography/connector-smtp.git"}
gunicorn = "^20.1.0"
2022-11-10 19:34:12 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
2023-02-08 17:07:06 +00:00
"."
2022-11-10 19:34:12 +00:00
]