-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (38 loc) · 887 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sd-mecha"
version = "0.0.27"
description = "State dict recipe merger"
readme = "README.md"
authors = [{ name = "ljleb" }]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"click",
"numpy",
"safetensors",
"tqdm",
"scipy",
"fuzzywuzzy",
"python-Levenshtein",
"PyYAML",
]
[tool.setuptools]
packages = [
"sd_mecha",
"sd_mecha.merge_methods",
"sd_mecha.extensions",
"sd_mecha.lora",
"sd_mecha.models",
]
[tool.setuptools.package-data]
"sd_mecha.lora" = ["*.json"]
"sd_mecha.models" = ["*.yaml", "*.txt"]
[project.urls]
Homepage = "https://github.com/ljleb/sd-mecha"
Issues = "https://github.com/ljleb/sd-mecha/issues"