Bump all versions to 0.99.47 and add wallet package to pyproject.toml

parent 2adc1a6a
...@@ -54,7 +54,7 @@ from .auth.qwen import QwenOAuth2 ...@@ -54,7 +54,7 @@ from .auth.qwen import QwenOAuth2
from .handlers import RequestHandler, RotationHandler, AutoselectHandler from .handlers import RequestHandler, RotationHandler, AutoselectHandler
from .utils import count_messages_tokens, split_messages_into_chunks, get_max_request_tokens_for_model from .utils import count_messages_tokens, split_messages_into_chunks, get_max_request_tokens_for_model
__version__ = "0.99.45" __version__ = "0.99.47"
__all__ = [ __all__ = [
# Config # Config
"config", "config",
......
...@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" ...@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "aisbf" name = "aisbf"
version = "0.99.46" version = "0.99.47"
description = "AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations" description = "AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations"
readme = "README.md" readme = "README.md"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
...@@ -49,15 +49,16 @@ Documentation = "https://git.nexlab.net/nexlab/aisbf.git" ...@@ -49,15 +49,16 @@ Documentation = "https://git.nexlab.net/nexlab/aisbf.git"
[tool.setuptools] [tool.setuptools]
packages = [ packages = [
"aisbf", "aisbf",
"aisbf.auth", "aisbf.auth",
"aisbf.providers", "aisbf.providers",
"aisbf.providers.kiro", "aisbf.providers.kiro",
"aisbf.payments", "aisbf.payments",
"aisbf.payments.crypto", "aisbf.payments.crypto",
"aisbf.payments.fiat", "aisbf.payments.fiat",
"aisbf.payments.subscription", "aisbf.payments.subscription",
"aisbf.payments.notifications" "aisbf.payments.notifications",
"aisbf.payments.wallet"
] ]
# Note: Provider handler modules (base, google, openai, anthropic, claude, kilo, ollama, codex) are in aisbf.providers package # Note: Provider handler modules (base, google, openai, anthropic, claude, kilo, ollama, codex) are in aisbf.providers package
py-modules = ["cli"] py-modules = ["cli"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment