Spaces:
Sleeping
Sleeping
File size: 1,012 Bytes
1acf78c 3c7652e 1acf78c 489bd9c 1acf78c 489bd9c f776c85 489bd9c f776c85 1acf78c 489bd9c | 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 | [build-system]
requires = ["setuptools>=61.0"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mail-triage-v4-security-eval"
version = "2.0.0"
description = "A high-fidelity security evaluation environment for email triage."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Security Agent Team"}
]
dependencies = [
"openenv-core==0.2.3",
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"pydantic>=2.11.7",
"openai>=2.30.0",
]
# FIXED: Points directly to your server.py file at the root
[project.scripts]
server = "server:main"
[project.urls]
"Homepage" = "https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE_NAME"
[tool.setuptools]
# FIXED: Updated to include server as a module instead of a package directory
py-modules = ["env", "models", "inference", "server"] |