-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1.31 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
[tool.poetry]
name = "ninja-put-patch-file-upload-middleware"
version = "0.1.3"
description = "A middleware that allows user to upload files using PUT / Patch"
authors = ["baseplate-admin <61817579+baseplate-admin@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "ninja_put_patch_file_upload_middleware"}]
homepage = "https://github.com/baseplate-admin/ninja_put_patch_file_upload_middleware"
repository = "https://github.com/baseplate-admin/ninja_put_patch_file_upload_middleware"
keywords = ["ninja", "django-ninja", "middlewares",'put','patch','file upload']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.9"
asgiref = ">=3.6"
django-ninja = "*"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.2"
pytest-django = ">=4.8.0"
pytest-asyncio = ">=0.23.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = '--nomigrations'