Upload info.py with huggingface_hub
Browse files
info.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from collections import OrderedDict
|
| 2 |
+
from version import VERSION
|
| 3 |
+
|
| 4 |
+
v = OrderedDict()
|
| 5 |
+
v["name"] = "ai-toolkit"
|
| 6 |
+
v["repo"] = "https://github.com/ostris/ai-toolkit"
|
| 7 |
+
v["version"] = VERSION
|
| 8 |
+
|
| 9 |
+
software_meta = v
|