-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.19 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "webhook-utils"
version = "0.4.0-dev"
description = "Short, well documented utilities for interacting with webhooks."
authors = ["Elijah Wilson <dev.tizz98@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tizz98/webhook-utils"
keywords = ["webhook", "utils", "utilities", "webhooks"]
[tool.poetry.dependencies]
python = "^3.8"
httpx = {version = ">=0.21.1,<0.24.0", optional = true}
fastapi = {version = "^0.70.1", optional = true}
requests = {version = "^2.26.0", optional = true}
uvicorn = {extras = ["standard"], version = "^0.16.0", optional = true}
rich = {version = "^10.16.1", optional = true}
[tool.poetry.extras]
httpx = ["httpx"]
fastapi = ["fastapi", "requests"]
examples = ["fastapi", "uvicorn", "httpx", "rich"]
[tool.poetry.dev-dependencies]
black = "^21.12b0"
isort = "^5.10.1"
pytest = "^6.2.5"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
pytest-spec = "^3.2.0"
pytest-xdist = {extras = ["psutil"], version = "^2.5.0"}
tox-gh-actions = "^2.8.1"
respx = "^0.19.0"
flake8-print = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = 'black'
[tool.black]
target-version = ['py38']