mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-29 03:05:13 +00:00
4f45f661e6
4b0a7daa8 add slack connector 2f7c0bdc6 Merge branch 'main' of github.com:sartography/connector-proxy-demo into main c9385c3c7 updating dependencies git-subtree-dir: connector-proxy-demo git-subtree-split: 4b0a7daa8d5a15ba6bb6b0cb6ac77b413468e2f4
26 lines
866 B
TOML
26 lines
866 B
TOML
[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 = "."}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
Flask = "^2.2.2"
|
|
spiffworkflow-proxy = {git = "https://github.com/sartography/spiffworkflow-proxy"}
|
|
connector-aws = { git = "https://github.com/sartography/connector-aws.git"}
|
|
connector-http = {git = "https://github.com/sartography/connector-http.git"}
|
|
connector-slack = {git = "https://github.com/sartography/connector-slack.git"}
|
|
gunicorn = "^20.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = [
|
|
"."
|
|
] |