permanence-training / pyproject.toml
chane35's picture
PERMANENCE: reversibility-aware RL environment for training LLM agents
796da7c verified
Raw
History Blame Contribute Delete
782 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "permanence"
version = "1.1.0"
description = "PERMANENCE reinforcement learning environment for action reversibility training"
readme = "docs/PERMANENCE_PROJECT_DESCRIPTION.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "Chanikya", email = "chanikyac01@gmail.com"}]
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0",
"requests>=2.25.0",
"openenv-core>=0.2.1",
]
[project.optional-dependencies]
test = ["pytest>=8"]
train = [
"torch>=2.0",
"transformers>=4.40",
"trl>=1.0",
"datasets>=2.0",
"unsloth",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["permanence*"]