-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.1 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cgd-pytorch"
version = "0.2.5"
description = "CLIP Guided Diffusion"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Katherine Crowson" },
{ name = "Clay Mullis" },
]
keywords = [
"text to image",
"openai clip",
"guided diffusion",
"image processing",
"pytorch",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
]
requires-python = ">=3.8"
dependencies = [
"torch",
"torchvision",
"kornia",
"tqdm",
"clip-anytorch",
"requests",
"lpips",
"wandb",
"guided-diffusion @ git+https://github.com/crowsonkb/guided-diffusion.git",
]
[project.scripts]
cgd = "cgd.cgd:main"
[project.urls]
Homepage = "https://github.com/afiaka87/clip-guided-diffusion"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["cgd", "data"]