Spaces:
Sleeping
Sleeping
File size: 782 Bytes
796da7c | 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 | [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*"]
|