-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (29 loc) · 967 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "image-byte-resizer"
version = "1.0.0"
description = "Reduce an image's file size in bytes without changing its dimensions or format."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Denali Cornwell" }]
keywords = ["image", "compression", "file-size", "jpeg", "png", "webp", "pillow"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Environment :: Console",
]
dependencies = ["Pillow>=11.0"]
[project.optional-dependencies]
dev = ["pytest>=7"]
[project.scripts]
image-byte-resizer = "image_byte_resizer.cli:main"
[project.urls]
Homepage = "https://github.com/dcwell/Python-Image-Resizer"
[tool.setuptools]
packages = ["image_byte_resizer"]
[tool.pytest.ini_options]
testpaths = ["tests"]