-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
45 lines (39 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
[tool.poetry]
name = "opa-python-client"
version = "2.0.2"
description = "Client for connection to the OPA service"
authors = ["Tural Muradov <tural.muradoov@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Turall/OPA-python-client"
repository = "https://github.com/Turall/OPA-python-client"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{include = "opa_client"}
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
aiohttp = {extras = ["speedups"], version = "^3.10.9"}
aiofiles = "^24.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
ruff = "^0.6.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 79
exclude = [".venv","tests","migrations"]
[tool.ruff.format]
indent-style = "tab"
docstring-code-format = true