From b70233af271c742722a14bae175b98135b01f3ef Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 1 Mar 2020 19:30:04 -0800 Subject: [PATCH] Added python-multipart test dependency --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 32e46b1..0775457 100644 --- a/setup.py +++ b/setup.py @@ -22,5 +22,7 @@ def get_long_description(): license="Apache License, Version 2.0", version=VERSION, py_modules=["asgi_csrf"], - extras_require={"test": ["pytest", "pytest-asyncio", "httpx", "starlette"]}, + extras_require={ + "test": ["pytest", "pytest-asyncio", "httpx", "starlette", "python-multipart"] + }, )