Spaces:
Sleeping
Sleeping
File size: 542 Bytes
1191a4e | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "policypulse-ai"
version = "1.0.0"
description = "Social Stream Moderation Environment for OpenEnv"
readme = "README.md"
authors = [
{ name = "PolicyPulse AI Team" }
]
requires-python = ">=3.10"
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"openai",
"python-multipart",
"jinja2",
"openenv-core>=0.2.0"
]
[tool.setuptools]
packages = ["envs", "server"]
[project.scripts]
server = "server.app:main"
|