Spaces:
Paused
Paused
File size: 868 Bytes
670ccf0 | 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 39 40 41 42 43 | [project]
name = "hr-productivity-env"
version = "0.1.0"
description = "HR Productivity Measurement: 6-quarter simulation using Fitz-enz frameworks for LLM agent evaluation"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.1",
"pydantic>=2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
server = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"faker>=20.0",
"numpy>=1.24",
]
agent = [
"anthropic>=0.40.0",
]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]
mcp = [
"fastmcp>=2.0",
]
poster = [
"numpy>=1.24",
"matplotlib>=3.7",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["hr_env*", "agent*", "server*", "integrations*"]
|