49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[tool.poetry]
|
|
name = "connector-proxy-status-im"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Jon Herron <jon.herron@yahoo.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
Flask = "^2.2.2"
|
|
|
|
connector-xero = {develop=true, path="connectors/connector-xero"}
|
|
connector-bamboohr = {develop=true, path="connectors/connector-bamboohr"}
|
|
connector-waku = {develop=true, path="connectors/connector-waku"}
|
|
connector-postgresql = {develop=true, path="connectors/connector-postgresql"}
|
|
connector-aws = { git = "https://github.com/sartography/connector-aws.git"}
|
|
connector-http = { git = "https://github.com/sartography/connector-http.git"}
|
|
connector-github = { git = "https://github.com/sartography/connector-github.git"}
|
|
connector-smtp = { git = "https://github.com/sartography/connector-smtp.git" }
|
|
connector-postgres-v2 = { git = "https://github.com/sartography/connector-postgres.git"}
|
|
|
|
gunicorn = "^20.1.0"
|
|
Flask-OAuthlib = "^0.9.6"
|
|
Flask-Session = "^0.4.0"
|
|
types-requests = "^2.28.11.2"
|
|
simplejson = "^3.17.6"
|
|
spiffworkflow-proxy = {git = "https://github.com/sartography/spiffworkflow-proxy"}
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[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"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|