Initial Functional Implementation of S3 MicroService

This commit is contained in:
2023-08-09 00:32:36 -03:00
commit 0b320a3222
23 changed files with 1161 additions and 0 deletions

41
pyproject.toml Normal file
View File

@@ -0,0 +1,41 @@
[tool.poetry]
name = "resize-image-service"
version = "0.1.0"
description = ""
authors = ["Vitor Hideyoshi <vitor.h.n.batista@gmail.com>"]
readme = "README.md"
packages = [{include = "resize_image_service"}]
[tool.poetry.dependencies]
python = "^3.8"
pillow = "^10.0.0"
redis = "^4.6.0"
requests = "^2.31.0"
rq = "^1.15.1"
python-dotenv = "^1.0.0"
fastapi = "^0.101.0"
uvicorn = "^0.23.2"
fastapi-utils = "^0.2.1"
boto3 = "^1.28.21"
python-multipart = "^0.0.6"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = "^23.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 79
sections=[
"FUTURE",
"FIRSTPARTY",
"LOCALFOLDER",
"THIRDPARTY",
"STDLIB",
]