-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added .gitignore, fixed dependencies installing, added get_models cli…
…ent method, version incremented to 0.3, added suppport for dict data in AIHordeClient._run
- Loading branch information
Showing
8 changed files
with
69 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__pycache__ | ||
*/__pycache__ | ||
build | ||
*.egg_info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel", "aiohttp", "msgspec"] | ||
requires = ["setuptools>=62", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "aihorde" | ||
version = "0.2" | ||
version = "0.3" | ||
description = "Python client for AI Horde API" | ||
dependencies = ["aiohttp", "msgspec"] | ||
authors = [ | ||
{name = "LapisMYT (Nikita Gavrilin)", email = "[email protected]"} | ||
{name = "LapisMYT (Nikita Ugnich)", email = "[email protected]"} | ||
] | ||
readme = "README.md" | ||
classifiers = ["Development Status :: 4 - Beta", | ||
"Framework :: aiohttp", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters