-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.72 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
58
59
60
61
62
63
64
65
[tool.poetry]
name = "aserto"
version = "0.32.3"
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"
aserto-directory = "^0.33.8"
aserto-authorizer = "^0.20.7"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
isort = "^6.0.1"
pytest-asyncio = "^0.23"
pyright = "^1.1.0"
requests = "^2.31.0"
grpc-stubs = ">=1.53.0.5"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
[tool.pylint]
max-line-length = 100
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-public-methods",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"