| [build-system] | |
| requires = ["setuptools>=68.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "simlab" | |
| version = "0.1.0" | |
| description = "Lab Automation RL Environment — a Gymnasium-style simulated wet-lab for agentic RL training" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| license = {text = "MIT"} | |
| dependencies = [ | |
| "numpy>=1.24", | |
| "torch>=2.0", | |
| "gymnasium>=0.29", | |
| "openenv-core>=0.2.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = ["pytest", "ruff"] | |
| demo = ["openai", "streamlit"] | |
| [tool.setuptools.packages.find] | |
| include = ["lab_env*", "agents*"] | |