File size: 721 Bytes
bbc1784 12d9f1b bbc1784 | 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 | [project]
name = "tiffin-packer"
version = "1.0.0"
description = "Smart Tiffin Packing Environment — OpenEnv compliant RL environment for semantic-aware constrained packing"
authors = [{name = "CtrlAltWin", email = "team@ctrlaltwin.dev"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"openenv-core>=0.1.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"numpy>=1.24.0",
"requests>=2.28.0",
"openai>=1.0.0",
]
[project.scripts]
server = "server.app:main"
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["tiffin_packer*", "server*"]
|