-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
68 lines (55 loc) · 1.77 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
66
67
68
[tool.poetry]
name = "jwthenticator"
version = "0.0.0" # For poetry-dynamic-versioning
description = "A cloud first service for key to JWT authentication library and server written in Python 3."
authors = ["Guy Zylberberg <[email protected]>", "Claroty Open Source <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/claroty/jwthenticator"
documentation = "https://github.com/claroty/jwthenticator"
exclude = ["jwthenticator/tests"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
sqlalchemy = ">=2.0, < 2.1.0"
sqlalchemy-utils = ">=0.33.0, < 1.0.0"
pg8000 = "1.16.6" # Constant due to - https://github.com/tlocke/pg8000/issues/53
aiohttp = "^3.9.5"
pyjwt = ">= 1.7, < 3.0.0"
cryptography = ">=41.0.3, <= 43.0.4" # Required for pyjwt
marshmallow = "^3.9"
marshmallow-dataclass = "^8.3"
pycryptodomex = "^3.9"
environs = "^9.3.1"
asyncpg = { version = "^0.28.0", markers = "platform_python_implementation == 'CPython'" } # pypy can not build asyncpg
aiosqlite = "^0.20.0"
[tool.poetry.dev-dependencies]
mypy = "^0.790"
pylint = "^2.6"
pytest = "^6.1"
pytest-asyncio = "^0.14"
pytest-aiohttp = "^0.3"
freezegun = "^1.0"
pyjwt = "^2.0"
diagrams = "^0.17.0"
mock = "^4.0.3"
async_generator = "^1.10"
aiofiles = "^0.7.0"
typing-inspect = "0.7.1" # https://github.com/lovasoa/marshmallow_dataclass/issues/206
[tool.poetry.group.dev.dependencies]
nest-asyncio = "^1.5.7"
[tool.pylint.message_control]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"line-too-long",
]
[tool.pylint.typecheck]
ignored-classes = [
"Session"
]
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"