-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (74 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "asgi-signing-middleware"
version = "0.2.0"
description = "A library that provides signing middlewares for any ASGI application."
authors = ["HacKan <hackan@gmail.com>"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://gitlab.com/hackancuba/asgi-signing-middleware"
documentation = "https://asgi-signing-middleware.hackan.net"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
blake2signer = "^2.1.0"
starlette = "^0.17.1"
[tool.poetry.dev-dependencies]
flake8 = "^4"
flake8-import-order = "^0"
flake8-blind-except = "^0"
flake8-builtins = "^1.4.1"
flake8-logging-format = "^0"
flake8-docstrings = "^1.4.0"
flake8-quotes = "^3.0.0"
flake8-debugger = "^4.0.0"
flake8-bugbear = "^22"
flake8-comprehensions = "^3.1.4"
flake8-bandit = "^3.0.0"
flake8-commas = "^2.0.0"
flake8-eradicate = "^1.0.0"
flake8-broken-line = "^0"
flake8-string-format = "^0"
flake8-executable = "^2.0.3"
flake8-2020 = "^1.6.0"
flake8-annotations-complexity = "^0"
flake8-pytest-style = "^1.6.0"
pep8-naming = "^0"
pydocstyle = "^6"
bandit = "^1.6.2"
invoke = "^1.3.0"
coverage = "^6.2"
radon = "^5.0.0"
dlint = "^0"
pytest = "^7.1.1"
pytest-watch = "^4.2.0"
pytest-cov = "^3"
pytest-custom_exit_code = "^0"
yapf = "^0"
add-trailing-comma = "^2.0.1"
safety = "^1.9.0"
mypy = "^0"
scriv = "^0"
pytest-randomly = "^3.8.0"
types-setuptools = "^57.4.5"
darglint = "^1.8.1"
fastapi = "^0"
uvicorn = "^0"
starlite = "^1.2.4"
pylint = "^2.12.2"
perflint = "^0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"