-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
39 lines (34 loc) · 918 Bytes
/
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
[project]
name = "asgi-csrf"
version = "0.11"
description = "ASGI middleware for protecting against CSRF attacks"
readme = "README.md"
requires-python = ">=3.9"
authors = [{name = "Simon Willison"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"itsdangerous",
"python-multipart>=0.0.13"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/simonw/asgi-csrf"
Changelog = "https://github.com/simonw/asgi-csrf/releases"
Issues = "https://github.com/simonw/asgi-csrf/issues"
CI = "https://github.com/simonw/asgi-csrf/actions"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"httpx>=0.16",
"starlette",
"pytest-cov",
"asgi-lifespan",
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"