[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*"]