-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
84 lines (78 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "diffused"
version = "1.0.1"
description = "Generate images with diffusion models."
requires-python = ">=3.9"
dependencies = [
"accelerate>=1.5.0",
"diffusers>=0.32.0",
"torch>=2.6.0",
"transformers>=4.50.0",
]
authors = [
{ name="Mark", email="mark@remarkablemark.org" },
]
maintainers = [
{ name="Mark", email="mark@remarkablemark.org" },
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"ai",
"artificial intelligence",
"cli",
"diffusers",
"diffusion",
"image-to-image",
"inpainting",
"machine learning",
"pytorch",
"stable diffusion",
"text-to-image",
]
[project.scripts]
diffused = "diffused.cli:main"
[project.entry-points."pipx.run"]
diffused = "diffused.cli:main"
[project.optional-dependencies]
build = [
"build==1.4.0",
"pyinstaller==6.18.0",
"twine==6.2.0",
]
docs = [
"pdoc==16.0.0",
]
lint = [
"black==25.12.0",
"isort==7.0.0",
"pre-commit==4.5.1",
"ruff==0.14.13",
]
test = [
"coverage==7.13.1",
"pytest==9.0.2",
]
[project.urls]
Homepage = "https://github.com/ai-action/diffused"
Documentation = "https://ai-action.github.io/diffused/"
Repository = "https://github.com/ai-action/diffused"
Issues = "https://github.com/ai-action/diffused/issues"
Changelog = "https://github.com/ai-action/diffused/blob/master/CHANGELOG.md"
[tool.black]
fast = true
[tool.coverage.run]
omit = [
# omit pytorch-generated files in /tmp
"/tmp/*",
]