-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (39 loc) · 1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "httpcli"
version = "0.1.0"
description = "A simple HTTP CLI"
authors = ["le_woudar <kevin.tewouda@gandi.net>"]
license = "MIT"
packages = [
{ include = "httpcli" }
]
[tool.poetry.dependencies]
python = "^3.7"
rich = "^10.7.0"
asyncclick = "^8.0.1"
pydantic = { version = "^1.8.2", extras = ["dotenv"] }
httpx = { version = "^0.19.0", extras = ["http2"] }
PyYAML = "^5.4.1"
uvloop = { version = "^0.16.0", markers = "sys_platform != 'win32'" }
shellingham = "^1.4.0"
[tool.poetry.dev-dependencies]
starlette = "^0.16.0"
pytest = "^6.2.4"
pytest-trio = "^0.7.0"
flake8 = "^3.9.2"
bandit = "^1.7.0"
respx = "^0.17.1"
pytest-cov = "^2.12.1"
pytest-mock = "^3.6.1"
mock = "^4.0.3"
Hypercorn = "^0.11.2"
[tool.poetry.scripts]
http = "httpcli.http:http"
https = "httpcli.https:https"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=httpcli --cov-report html --cov-report xml"
trio_mode = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"