Initial commit
Some checks failed
Build and Publish Docker Images / build (server.Dockerfile, ${{ vars.IMAGE_NAME_SERVER }}) (push) Has been cancelled
Build and Publish Docker Images / build (server.Dockerfile, ${{ vars.IMAGE_NAME_WORKER }}) (push) Has been cancelled
Build and Publish Docker Images / build (worker.Dockerfile, ${{ vars.IMAGE_NAME_SERVER }}) (push) Has been cancelled
Build and Publish Docker Images / build (worker.Dockerfile, ${{ vars.IMAGE_NAME_WORKER }}) (push) Has been cancelled
Build and Publish Docker Images / setup (push) Has been cancelled

This commit is contained in:
Ben Martin 2025-05-10 13:10:49 +01:00
commit 68f6e85c78
Signed by: ben
GPG key ID: 859A655FCD290E4A
17 changed files with 1286 additions and 0 deletions

28
pyproject.toml Normal file
View file

@ -0,0 +1,28 @@
[project]
name = "auto-transcoder"
version = "0.1.0"
description = ""
authors = [
{name = "Ben Martin",email = "ben@brmartin.co.uk"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"celery[redis] (>=5.5.2,<6.0.0)",
"flask (>=3.1.0,<4.0.0)",
"python-magic (>=0.4.27,<0.5.0)",
"redis (>=5,<6)",
"asyncio (>=3.4.3,<4.0.0)"
]
[tool.poetry]
package-mode = false
packages = [{include = "auto_transcoder", from = "src"}]
[tool.poetry.group.dev.dependencies]
flower = "^2.0.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"