mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 14:14:13 +01:00
36 lines
784 B
TOML
36 lines
784 B
TOML
[tool.poetry]
|
|
name = "yacv-server"
|
|
version = "0.1.0" # TODO: Update automatically by CI on release (also for package.json!)
|
|
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"
|
|
|
|
# CAD
|
|
build123d = "^0.3.0"
|
|
ocp-tessellate = "^2.0.6"
|
|
|
|
# Web
|
|
aiohttp = "^3.9.3"
|
|
aiohttp-cors = "^0.7.0"
|
|
aiohttp-devtools = "^1.1.2"
|
|
|
|
# Misc
|
|
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"
|