email-sorting-openenv / pyproject.toml
Palak6106's picture
Update pyproject.toml
dc2f549 verified
Raw
History Blame
611 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "email-sorting-openenv"
version = "1.0.0"
description = "An OpenEnv environment for sorting emails as spam, important, or promotion"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gymnasium",
"openai",
"fastapi",
"uvicorn",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[tool.openenv]
name = "Email Sorting OpenEnv"
version = "1.0.0"
description = "Sort emails as spam, important, or promotion"
entry_point = "env:EmailSortingEnv"