-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 1.17 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "codex-fast-proxy"
version = "0.1.0"
description = "Codex App auth-split proxy for signing in with ChatGPT while using third-party OpenAI-compatible APIs."
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
license = { text = "MIT" }
keywords = [
"agent-skills",
"codex",
"openai-codex",
"codex-skill",
"skills",
"ai-agents",
"responses-api",
"fast-mode",
"service-tier",
"openai-compatible-api",
"chatgpt-login",
"auth-split",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/gaoguobin/codex-fast-proxy#readme"
Repository = "https://github.com/gaoguobin/codex-fast-proxy"
Issues = "https://github.com/gaoguobin/codex-fast-proxy/issues"
Documentation = "https://github.com/gaoguobin/codex-fast-proxy#readme"
[project.scripts]
codex-fast-proxy = "codex_fast_proxy.manager:main"
[tool.setuptools.packages.find]
where = ["src"]