mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 08:29:45 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
from collections import OrderedDict
|
|
from version import VERSION
|
|
|
|
v = OrderedDict()
|
|
v["name"] = "ai-toolkit"
|
|
v["repo"] = "https://github.com/ostris/ai-toolkit"
|
|
v["version"] = VERSION
|
|
|
|
software_meta = v
|