-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.37 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 = "armasec-subscriptions"
version = "0.1.1"
description = "Armasec plugin for verifying subscribed user access"
authors = ["Omnivector Engineering Team <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/omnivector-solutions/armasec"
repository = "https://github.com/omnivector-solutions/armasec"
documentation = "https://omnivector-solutions.github.io/armasec"
packages = [{include = "plugin"}]
[tool.poetry.urls]
CHANGELOG = "https://github.com/omnivector-solutions/armasec-subscriptions/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
armasec = "^2.0.1"
httpx = "^0.27.0"
cachetools = "^5.3.3"
[tool.poetry.plugins.'armasec']
armasec-subscriptions = 'plugin.main'
[tool.poetry.group.dev.dependencies]
pytest = "^7"
pendulum = {extras = ["test"], version = "^3.0.0"}
fastapi = "^0.111"
asgi-lifespan = "^2.1.0"
pytest-sugar = "^1.0.0"
pytest-cov = "^4.1.0"
pytest-random-order = "^1.1.1"
pytest-asyncio = "^0.23.6"
pytest-mock = "^3.12.0"
respx = "^0.21.0"
ruff = "^0.3.3"
mypy = "^1.9.0"
types-cachetools = "^5.3.0.7"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=plugin --random-order"
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"