color_textual_inversion / pyproject.toml
Bingsu's picture
chore: add ipykernel
d23e0ab
raw
history blame
No virus
715 Bytes
[project]
name = "color-textual-inversion"
version = "0.1.0"
description = ""
authors = [
{name = "Bingsu", email = "ks2515@naver.com"},
]
dependencies = [
"torch",
"torchvision",
"accelerate",
"ftfy",
"tensorboard",
"modelcards",
"transformers>=4.21.0",
"diffusers",
"streamlit==1.10.0",
]
license = {text = "MIT"}
requires-python = ">=3.9"
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black>=22.10.0",
"isort>=5.10.1",
"mypy>=0.991",
"flake8-bugbear>=22.12.6",
"ipywidgets>=8.0.3",
]
[tool.pdm.scripts]
st = "streamlit run app.py"
black = "black ."
isort = "isort ."
format = {composite = ["black", "isort"]}
[tool.isort]
profile = "black"