-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
54 lines (44 loc) · 1.35 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "django-webp"
version = "3.0.0"
description = "Serves a webp version of static images to browsers instead of jpg, gif or png"
readme = "README.rst"
requires-python = ">=3.5"
keywords = ["django", "webp", "python"]
authors = [
{ name = "Andre Farzat", email = "[email protected]" },
{ name = "Daniel Opara", email = "[email protected]" }
]
maintainers = [
{ name = "Andre Farzat", email = "[email protected]" },
{ name = "Daniel Opara", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"asgiref>=3.5.0",
"django>=4.0.3",
"pillow>=9.0.1",
"sqlparse>=0.4.2",
"whitenoise>=6.5.0"
]
[project.optional-dependencies]
dev = ["pip-tools", "pytest", "black"]
[project.urls]
Homepage = "http://pypi.python.org/pypi/django-webp/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]