-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 851 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
[tool.poetry]
name = "image-titler"
version = "2.5.1"
description = "An image processing utility which provides options for generating thumbnails for various social media platforms."
authors = ["Jeremy Grifski <jeremy.grifski@therenegadecoder.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/TheRenegadeCoder/image-titler"
packages = [{include = "imagetitler"}, {include = "scripts"}]
[tool.poetry.dependencies]
python = "^3.11"
titlecase = "^2.0"
pillow = ">=10,<13"
pathvalidate = "^2.0"
piexif = "^1.0"
matplotlib = "^3.0"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-cov = "*"
[tool.poetry.scripts]
image-titler = "scripts.cli:main"
image_titler = "scripts.cli:main"
image-titler-gui = "scripts.gui:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"