File size: 440 Bytes
fe6327d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "library"
version = "1.0.3"
description = "Libraries required to run kohya_ss GUI"
authors = ["Bernard Maltais <bernard@ducourier.com>"]
license = "Apache-2.0" # Apache Software License
[[tool.poetry.source]]
name = "library"
path = "library"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
[tool.poetry.dev-dependencies]
|