-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 865 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tool.poetry]
name = "hookbridge"
version = "0.4.0"
description = "A configurable webhook bridge. Routes HTTP webhooks from any source, to any HTTP REST/JSON destination !"
authors = ["Léo GATELLIER <github@leogatellier.fr>"]
classifiers = ["License :: OSI Approved :: Apache Software License", "Development Status :: 2 - Pre-Alpha", "Topic :: Internet :: WWW/HTTP", "Topic :: System :: Networking"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = ">=0.70,<0.116"
uvicorn = ">=0.15,<0.33"
dependency-injector = "^4.37.0"
PyYAML = "^6.0"
coloredlogs = "^15.0.1"
jsonpath-ng = "^1.5.3"
requests = "^2.32.3"
[tool.poetry.dev-dependencies]
pytest = "^8.3"
tox = "^4.23.1"
black = "^24.8"
flake8 = "^7.1.1"
[tool.poetry.scripts]
hookbridge = "hookbridge.server:start"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"