24 lines
579 B
TOML
24 lines
579 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "aiunn"
|
|
version = "0.1.1"
|
|
description = "Finetuner for image upscaling using AIIA"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {file = "LICENSE"}
|
|
authors = [
|
|
{name = "Falko Habel", email = "falko.habel@gmx.de"},
|
|
]
|
|
dependencies = [
|
|
"torch",
|
|
"pillow",
|
|
"torchvision",
|
|
"scikit-learn",
|
|
"aiia @ git+https://gitea.fabelous.app/Machine-Learning/AIIA.git"
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://gitea.fabelous.app/Machine-Learning/aiuNN" |