-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
55 lines (49 loc) · 1.14 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
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "clientele"
version = "0.9.0"
description = "Generate loveable Python HTTP API Clients"
authors = ["Paul Hallett <paulandrewhallett@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "clientele"}]
homepage = "https://phalt.github.io/clientele/"
[tool.poetry.urls]
changelog = "https://phalt.github.io/clientele/CHANGELOG/"
documentation = "https://phalt.github.io/clientele/"
issues = "https://github.com/phalt/clientele/issues"
[tool.poetry.scripts]
clientele = "clientele.cli:cli_group"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.24.1"
click = "^8.1.3"
pydantic = "^2.4"
rich = "^13.4.2"
openapi-core = "0.18.0"
pyyaml = "^6.0.1"
types-pyyaml = "^6.0.12.11"
jinja2 = "^3.1.2"
black = "^23.9.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.4.0"
mkdocs = "^1.4.3"
ipython = "^8.14.0"
mkdocs-material = "^9.1.19"
respx = "^0.20.2"
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
ruff = "^0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]