2022-09-09 14:15:29 +00:00
|
|
|
[tool.poetry]
|
2022-10-10 14:04:32 +00:00
|
|
|
name = "connector-proxy-status-im"
|
2022-09-09 14:15:29 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Jon Herron <jon.herron@yahoo.com>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-11-28 19:24:51 +00:00
|
|
|
python = "^3.11"
|
2022-09-21 21:22:33 +00:00
|
|
|
Flask = "^2.2.2"
|
2022-09-09 17:39:56 +00:00
|
|
|
|
2022-09-20 15:47:56 +00:00
|
|
|
connector-xero = {develop=true, path="connectors/connector-xero"}
|
|
|
|
connector-bamboohr = {develop=true, path="connectors/connector-bamboohr"}
|
2022-09-26 18:55:44 +00:00
|
|
|
connector-waku = {develop=true, path="connectors/connector-waku"}
|
2022-12-21 18:31:22 +00:00
|
|
|
connector-postgresql = {develop=true, path="connectors/connector-postgresql"}
|
2024-01-02 14:33:33 +00:00
|
|
|
connector-postgres-v2 = { git = "https://github.com/sartography/connector-postgres.git"}
|
2022-11-28 17:29:12 +00:00
|
|
|
connector-aws = { git = "https://github.com/sartography/connector-aws.git"}
|
2023-01-05 15:25:56 +00:00
|
|
|
connector-http = { git = "https://github.com/sartography/connector-http.git"}
|
2023-06-09 18:20:55 +00:00
|
|
|
connector-github = { git = "https://github.com/sartography/connector-github.git"}
|
2023-09-21 09:20:07 +00:00
|
|
|
connector-smtp = { git = "https://github.com/sartography/connector-smtp.git" }
|
2022-10-05 23:02:21 +00:00
|
|
|
|
2022-09-14 18:55:46 +00:00
|
|
|
gunicorn = "^20.1.0"
|
2022-09-21 21:22:33 +00:00
|
|
|
Flask-OAuthlib = "^0.9.6"
|
|
|
|
Flask-Session = "^0.4.0"
|
2022-10-10 16:16:51 +00:00
|
|
|
types-requests = "^2.28.11.2"
|
2022-10-21 16:43:26 +00:00
|
|
|
simplejson = "^3.17.6"
|
2022-11-28 17:29:12 +00:00
|
|
|
spiffworkflow-proxy = {git = "https://github.com/sartography/spiffworkflow-proxy"}
|
2022-09-09 14:15:29 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
2022-10-10 16:02:36 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "^7.1.3"
|
|
|
|
coverage = "^6.5.0"
|
|
|
|
safety = "^2.3.1"
|
|
|
|
mypy = "^0.982"
|
|
|
|
typeguard = "^2.13.3"
|
|
|
|
xdoctest = "^1.1.0"
|
|
|
|
Sphinx = "^5.2.3"
|
|
|
|
sphinx-autobuild = "^2021.3.14"
|
|
|
|
pre-commit = "^2.20.0"
|
|
|
|
flake8 = "^5.0.4"
|
|
|
|
black = "^22.10.0"
|
|
|
|
flake8-bandit = "^4.1.1"
|
|
|
|
pyupgrade = "^3.0.0"
|
|
|
|
pre-commit-hooks = "^4.3.0"
|
|
|
|
|
2022-09-09 14:15:29 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|