-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 1.08 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
[tool.poetry]
name = "thunagen"
version = "0.3.8"
description = "Google Cloud function to generate thumbnail for images in Google Storage."
authors = ["Nguyễn Hồng Quân <[email protected]>"]
maintainers = [
"Nguyễn Hồng Quân <[email protected]>"
]
license = "Apache-2.0"
readme = "README.rst"
repository = "https://github.com/sunshine-tech/thunagen.git"
classifiers = [
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Environment :: Web Environment"
]
keywords = ["google", "cloud", "storage", "functions", "thumbnail"]
[tool.poetry.dependencies]
python = "^3.7"
Pillow = "^7.0.0"
google-cloud-storage = "^1.24.1"
logbook = "^1.5.3"
lazy_object_proxy = "^1.4.3"
python-dotenv = "^0.10.3"
importlib_metadata = "^1.3.0"
google-cloud-pubsub = "^1.1.0"
single-version = "^1.1"
pendulum = "^2.0.5"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-logbook = "^1.2.0"
pytest-flake8 = "^1.0.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"