-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (44 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
42
43
44
45
46
47
48
49
50
51
[project]
name = "django-easy-images"
version = "2.0"
description = "Easily build responsive HTML `<img>` tags from Django images"
authors = [{ name = "Chris Beaven", email = "[email protected]" }]
dependencies = [
"django>=4.2",
"typing-extensions>=4.11.0",
"django-stubs-ext>=4.2.7",
"pyvips>=2.2.2",
"tqdm>=4.66.2",
"pillow",
]
requires-python = ">=3.8"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/SmileyChris/django-easy-images"
[project.license]
text = "MIT"
[project.optional-dependencies]
tests = ["pytest", "pytest-django>=4.8.0"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
django_find_project = false
pythonpath = "."