mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 14:14:13 +01:00
Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.4.0 to 11.0.0. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/10.4.0...11.0.0) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
617 B
TOML
30 lines
617 B
TOML
[tool.poetry]
|
|
name = "yacv-server"
|
|
version = "0.9.0"
|
|
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.5,<0.8"
|
|
|
|
# Misc
|
|
pygltflib = "^1.16.2"
|
|
pillow = ">=10.2,<12.0"
|
|
|
|
[tool.poetry.build]
|
|
generate-setup-file = false
|
|
script = "build.py"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|