-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (51 loc) · 1.51 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
56
57
[tool.poetry]
name = "aserto"
version = "0.32.0"
description = "Aserto API client"
readme = "README.md"
authors = ["Aserto, Inc. <[email protected]>"]
maintainers = ["authereal <[email protected]>"]
homepage = "https://github.com/aserto-dev/aserto-python/tree/HEAD"
repository = "https://github.com/aserto-dev/aserto-python/tree/HEAD"
documentation = "https://github.com/aserto-dev/aserto-python/tree/HEAD"
license = "Apache-2.0"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
packages = [
{include = "aserto", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.10.2"
grpcio = "^1.64.1"
protobuf = "^5.27.2"
aserto-authorizer = "^0.20.3"
aserto-directory = "^0.31.4"
certifi = ">=2024.8.30"
[tool.poetry.dev-dependencies]
black = "^24.0"
isort= "^5.9.0"
pytest-asyncio = "^0.23"
pyright = "^1.1.0"
requests = "^2.31.0"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"