solving lots of production issues

This commit is contained in:
Yeicor
2024-03-03 13:16:51 +01:00
parent 71887f75e6
commit 0fad65d7b2
11 changed files with 51 additions and 30 deletions

View File

@@ -1,10 +1,14 @@
[tool.poetry]
name = "yacv-server"
version = "0.1.0"
version = "0.1.0" # TODO: Update automatically by CI on release
description = "Yet Another CAD Viewer (server)"
authors = ["Yeicor <4929005+Yeicor@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
include = [
{ path = 'yacv_server/frontend/*', format = 'wheel' },
{ path = 'yacv_server/frontend/*', format = 'sdist' },
]
[tool.poetry.dependencies]
python = "^3.9"
@@ -22,6 +26,10 @@ aiohttp-devtools = "^1.1.2"
pygltflib = "^1.16.1"
pillow = "^10.2.0"
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"