Files
Airwallex/airwallex-sdk/pyproject.toml
zqq61 4f53889a8e feat: Airwallex 发卡管理后台完整实现
- 后端: FastAPI + SQLAlchemy + SQLite, JWT认证, 代理支持的AirwallexClient
- 前端: React 18 + Vite + Ant Design 5, 中文界面
- 功能: 卡片管理, 持卡人管理, 交易记录, API令牌, 系统设置, 审计日志
- 第三方API: X-API-Key认证, 权限控制
- Docker部署: docker-compose编排前后端
2026-03-15 23:05:08 +08:00

26 lines
569 B
TOML

[tool.poetry]
name = "airwallex-sdk"
version = "0.1.1"
description = "Unofficial Airwallex SDK for Python"
authors = ["duneraccoon <benjamincsherro@hotmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "airwallex" }]
[tool.poetry.dependencies]
python = "^3.10"
httpx = "^0.28.1"
pydantic = "^2.11.3"
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
Source = "https://github.com/DuneRaccoon/airwallex-sdk"