-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (65 loc) · 1.67 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-proxy-core"
version = "0.4.43"
authors = [
{name = "ebowwa", email = "your-email@example.com"},
]
description = "Minimal, reusable AI service handlers for Gemini and other LLMs"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"google-genai>=0.1.0",
"pillow>=10.0.0",
"aiohttp>=3.8.0", # For Ollama
"openai>=1.99.5",
]
keywords = ["ai", "gemini", "llm", "api", "proxy"]
[project.urls]
Homepage = "https://github.com/ebowwa/ai-proxy-core"
Repository = "https://github.com/ebowwa/ai-proxy-core"
Issues = "https://github.com/ebowwa/ai-proxy-core/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"build>=0.10.0",
"twine>=4.0.0",
]
telemetry = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
]
openai = [
"openai>=1.0.0",
]
anthropic = [
"anthropic>=0.18.0",
]
all = [
"openai>=1.0.0",
"anthropic>=0.18.0",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
]
[tool.setuptools]
package-dir = {"ai_proxy_core" = "src"}
packages = ["ai_proxy_core", "ai_proxy_core.providers"]
[dependency-groups]
dev = [
"black>=25.1.0",
"flake8>=7.3.0",
]