mirror of
https://github.com/cnlimiter/codex-register.git
synced 2026-05-07 05:12:42 +08:00
- 在账号详情页添加cookies编辑与保存功能,用于支付请求 - 支付页面新增国家选择下拉框,支持多国货币计费 - 优化无痕打开浏览器功能,支持注入账号cookies - 更新数据库模型、API路由及前端界面
42 lines
756 B
TOML
42 lines
756 B
TOML
[project]
|
|
name = "codex-register-v2"
|
|
version = "1.0.4"
|
|
description = "OpenAI 自动注册系统 v2"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"curl-cffi>=0.14.0",
|
|
"fastapi>=0.100.0",
|
|
"uvicorn>=0.23.0",
|
|
"jinja2>=3.1.0",
|
|
"python-multipart>=0.0.6",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
"sqlalchemy>=2.0.0",
|
|
"aiosqlite>=0.19.0",
|
|
"websockets>=16.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"httpx>=0.24.0",
|
|
]
|
|
payment = [
|
|
"playwright>=1.40.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
codex-webui = "webui:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyinstaller>=6.19.0",
|
|
]
|