Spaces:
Runtime error
Runtime error
File size: 1,160 Bytes
d10d213 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "lbm"
dynamic = ["dependencies", "optional-dependencies"]
description = "LBM: Latent Bridge Matching for Fast Image-to-Image Translation"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Clement Chadebec", email = "[email protected]" },
{ name = "Benjamin Aubin", email = "[email protected]" },
]
maintainers = [
{ name = "Clement Chadebec", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
version = "0.1"
[project.urls]
Homepage = "https://github.com/gojasper/LBM"
Repository = "https://github.com/gojasper/LBM"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.wheel]
packages = ["src/lbm"]
|