Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +22 -18
pyproject.toml
CHANGED
@@ -3,29 +3,33 @@ requires = ["setuptools >= 75.0"]
|
|
3 |
build-backend = "setuptools.build_meta"
|
4 |
|
5 |
[project]
|
6 |
-
name = "edge-
|
7 |
-
description = "
|
8 |
requires-python = ">=3.10,<3.13"
|
9 |
-
version = "
|
10 |
dependencies = [
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
]
|
13 |
|
14 |
-
[tool.
|
15 |
-
|
|
|
16 |
|
17 |
-
[dependency-groups]
|
18 |
-
dev = [
|
19 |
-
"pytype==2024.10.11"
|
20 |
-
]
|
21 |
|
22 |
-
[tool.
|
23 |
-
|
|
|
24 |
|
25 |
-
[project.scripts]
|
26 |
-
submit_model = "miner.submit:main"
|
27 |
|
28 |
-
[
|
29 |
-
|
30 |
-
"miner",
|
31 |
-
]
|
|
|
3 |
build-backend = "setuptools.build_meta"
|
4 |
|
5 |
[project]
|
6 |
+
name = "flux-schnell-edge-inference"
|
7 |
+
description = "An edge-maxxing model submission for the 4090 Flux contest"
|
8 |
requires-python = ">=3.10,<3.13"
|
9 |
+
version = "8"
|
10 |
dependencies = [
|
11 |
+
"diffusers==0.31.0",
|
12 |
+
"transformers==4.46.2",
|
13 |
+
"accelerate==1.1.0",
|
14 |
+
"omegaconf==2.3.0",
|
15 |
+
"torch==2.5.1",
|
16 |
+
"protobuf==5.28.3",
|
17 |
+
"sentencepiece==0.2.0",
|
18 |
+
"torchao==0.6.1",
|
19 |
+
"hf_transfer==0.1.8",
|
20 |
+
"edge-maxxing-pipelines @ git+https://github.com/womboai/edge-maxxing@7c760ac54f6052803dadb3ade8ebfc9679a94589#subdirectory=pipelines",
|
21 |
+
"setuptools>=75.3.0"
|
22 |
]
|
23 |
|
24 |
+
[[tool.edge-maxxing.models]]
|
25 |
+
repository = "jokerbit/flux.1-schnell-Robert-int8wo"
|
26 |
+
revision = "5ef0012f11a863e5111ec56540302a023bc8587b"
|
27 |
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
[[tool.edge-maxxing.models]]
|
30 |
+
repository = "madebyollin/taef1"
|
31 |
+
revision = "2d552378e58c9c94201075708d7de4e1163b2689"
|
32 |
|
|
|
|
|
33 |
|
34 |
+
[project.scripts]
|
35 |
+
start_inference = "main:main"
|
|
|
|