-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 900 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
[tool.poetry]
name = "gcloud-image-transformer"
version = "1.0.0"
description = "Optimize images hosted on Google Cloud Storage."
authors = ["Todd Birchard <toddbirchard@gmail.com>"]
maintainers = ["Todd Birchard <toddbirchard@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/hackersandslackers/gcloud_image_transformer/"
keywords = ["Google Cloud",
"CDN",
"Pillow",
"Automation",
"Images"]
[tool.poetry.dependencies]
python = "^3.8"
pillow = "*"
google-cloud-storage = "*"
requests = "*"
webp-converter = "*"
python-resize-image = "*"
loguru = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:main"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/gcloud_image_transformer/issues"