-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (32 loc) · 1.04 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
[tool.poetry]
name = "drf-imgproxy"
version = "1.1.0"
description = "Serialize Django's ImageField into imgproxy URLs for your Django REST Framework APIs to generate thumbnails."
authors = ["VIPER Development UG <[email protected]>"]
license = "MIT"
readme = "README.rst"
include = ["CHANGELOG.rst"]
repository = "https://github.com/viper-development/drf-imgproxy"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["imgproxy", "django-rest-framework", "django", "thumbnailer"]
[tool.poetry.dependencies]
python = "^3.6"
djangorestframework = ">=3.9.0"
Django = ">=2.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.4"
pytest-django = "^4.1.0"
pytest-cov = "^2.10.1"
pytest-instafail = "^0.4.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"