Fix license-files setting for project (#71)

This commit is contained in:
Stephan Auerhahn
2023-07-26 11:14:23 -07:00
committed by GitHub
parent dea60596fc
commit 45c443b316

View File

@@ -7,7 +7,7 @@ name = "sgm"
dynamic = ["version"] dynamic = ["version"]
description = "Stability Generative Models" description = "Stability Generative Models"
readme = "README.md" readme = "README.md"
license-files = { paths = ["LICENSE"] } license-files = { paths = ["LICENSE-CODE"] }
requires-python = ">=3.8" requires-python = ">=3.8"
[project.urls] [project.urls]
@@ -45,4 +45,4 @@ test-inference = [
"pip install torch==2.0.1+cu118 torchvision==0.15.2+cu118 torchaudio==2.0.2+cu118 --index-url https://download.pytorch.org/whl/cu118", "pip install torch==2.0.1+cu118 torchvision==0.15.2+cu118 torchaudio==2.0.2+cu118 --index-url https://download.pytorch.org/whl/cu118",
"pip install -r requirements/pt2.txt", "pip install -r requirements/pt2.txt",
"pytest -v tests/inference/test_inference.py {args}", "pytest -v tests/inference/test_inference.py {args}",
] ]