-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (39 loc) · 920 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
43
44
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sd-mecha"
version = "0.1.0rc1"
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>=8.1.7",
"numpy>=1.26.0",
"torch>=2.1.0",
"scipy>=1.14.0",
"safetensors>=0.4.2",
"tqdm>=4.66.2",
"fuzzywuzzy>=0.18.0",
"python-Levenshtein",
"PyYAML>=6.0.1",
]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra"
pythonpath = "."
testpaths = [
"tests",
]
[tool.setuptools.package-dir]
sd_mecha = "sd_mecha"
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[project.urls]
Homepage = "https://github.com/ljleb/sd-mecha"
Issues = "https://github.com/ljleb/sd-mecha/issues"