openenv/chat_env
0
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7[build-system]8requires = ["setuptools>=45", "wheel"]9build-backend = "setuptools.build_meta"10 11[project]12name = "openenv-chat-env"13version = "0.1.0"14description = "Chat Environment for OpenEnv - LLM-powered conversational agent"15requires-python = ">=3.10"16dependencies = [17 "openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git@v0.2.3",18 "fastapi>=0.115.0",19 "pydantic>=2.0.0",20 "uvicorn>=0.24.0",21 "requests>=2.31.0",22 "transformers",23]24 25[project.optional-dependencies]26dev = [27 "pytest>=8.0.0",28 "pytest-cov>=4.0.0",29]30 31[project.scripts]32server = "chat_env.server.app:main"33 34[tool.setuptools]35include-package-data = true36packages = ["chat_env", "chat_env.server"]37package-dir = { "chat_env" = ".", "chat_env.server" = "server" }38 