25 lines
432 B
TOML
25 lines
432 B
TOML
[project]
|
|
name = "interview-system"
|
|
version = "0.1.0"
|
|
description = "AI面试官系统"
|
|
authors = [
|
|
{ name = "Your Name", email = "your.email@example.com" },
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"flask>=2.3.0",
|
|
"requests>=2.31.0",
|
|
"python-dotenv>=1.0.0",
|
|
"gunicorn>=21.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project.scripts]
|
|
start = "app:app"
|
|
serve = "gunicorn:run"
|
|
|
|
|