-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 806 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
36
37
[project]
name = "transimage"
version = "1.0.0"
description = "Converts images from one format to another using Pillow. Supports JPG, PNG, BMP, and WebP."
authors = [
{name = "Daethyra", email = "109057945+Daethyra@users.noreply.github.com"},
]
dependencies = [
"pillow<12.0.0,>=11.0.0",
]
requires-python = "<4.0,>=3.13"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = true
package-dir = "src"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
format = "black src/transimage tests"
lint = "flake8 src/transimage tests"
test = "pytest tests"
all.composite = ["format", "lint", "test"]
[dependency-groups]
dev = [
"black>=24.10.0",
"flake8>=7.1.2",
"pdm>=2.25.4",
"pytest>=8.4.1",
]