Commit 82f4c1e3 authored by Your Name's avatar Your Name

Bump version to 0.99.17 - Fix missing users.html template

parent fd228746
...@@ -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.16" version = "0.99.17"
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"
...@@ -54,3 +54,7 @@ py-modules = ["cli"] ...@@ -54,3 +54,7 @@ py-modules = ["cli"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
aisbf = ["*.json", "streaming_optimization.py"] aisbf = ["*.json", "streaming_optimization.py"]
[tool.setuptools.package-data.""]
templates = ["**/*.html", "**/*.css", "**/*.js"]
static = ["**/*"]
...@@ -49,7 +49,7 @@ class InstallCommand(_install): ...@@ -49,7 +49,7 @@ class InstallCommand(_install):
setup( setup(
name="aisbf", name="aisbf",
version="0.99.16", version="0.99.17",
author="AISBF Contributors", author="AISBF Contributors",
author_email="stefy@nexlab.net", author_email="stefy@nexlab.net",
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",
...@@ -76,6 +76,7 @@ setup( ...@@ -76,6 +76,7 @@ setup(
include_package_data=True, include_package_data=True,
package_data={ package_data={
"aisbf": ["*.json"], "aisbf": ["*.json"],
"": ["templates/**/*.html", "templates/**/*.css", "templates/**/*.js", "static/**/*"],
}, },
data_files=[ data_files=[
# Install to /usr/local/share/aisbf (system-wide) # Install to /usr/local/share/aisbf (system-wide)
...@@ -165,6 +166,7 @@ setup( ...@@ -165,6 +166,7 @@ setup(
'templates/dashboard/user_autoselects.html', 'templates/dashboard/user_autoselects.html',
'templates/dashboard/user_tokens.html', 'templates/dashboard/user_tokens.html',
'templates/dashboard/rate_limits.html', 'templates/dashboard/rate_limits.html',
'templates/dashboard/users.html',
]), ]),
# Install static files (extension and favicon) # Install static files (extension and favicon)
('share/aisbf/static', [ ('share/aisbf/static', [
......
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