-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "browser-llm-api"
description = "OpenAI-compatible API (chat, vision, image generation + editing) backed by an automated Chrome browser session — no API key, drives gemini.google.com / chatgpt.com."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "staticB1", email = "bsiwonde@gmail.com" },
{ name = 'Ebenezer "Ebstar" Tarubinga', email = "ebstarmusic@gmail.com" },
]
keywords = ["llm", "openai", "gemini", "chatgpt", "browser-automation", "nodriver", "fastapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dynamic = ["version"]
dependencies = [
"nodriver>=0.50",
"fastapi>=0.115",
"uvicorn>=0.30",
"pydantic>=2",
"httpx>=0.27", # remote-provider proxying (REMOTE_PROVIDERS)
"python-multipart>=0.0.9", # multipart uploads on /v1/images/edits
]
[project.optional-dependencies]
# gen_asset.py post-processes generated images (resize/crop/favicon/knockout).
assets = ["Pillow>=10"]
[project.scripts]
browser-llm = "server:main"
[project.urls]
Homepage = "https://github.com/StaticB1/browser-llm-api"
Repository = "https://github.com/StaticB1/browser-llm-api"
Issues = "https://github.com/StaticB1/browser-llm-api/issues"
# Flat layout: top-level modules + the providers package. The web UI + widget
# in webui/ are resolved relative to server.py at runtime, so install editable
# from a clone (`pip install -e .`) — that keeps the source (and webui/) in place.
[tool.setuptools]
py-modules = ["server", "client", "login", "gen_asset", "gemini_bot", "_version"]
[tool.setuptools.packages.find]
include = ["providers*"]
[tool.setuptools.dynamic]
version = { attr = "_version.__version__" }