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 = [
|
|
"."
|
|
] |