Spaces:
Sleeping
Sleeping
File size: 1,093 Bytes
b6f80c5 a099b30 b6f80c5 | 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 37 38 39 | [build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-traffic-control"
version = "1.0.0"
description = "Autonomous Traffic Control RL Environment - OpenEnv Hackathon"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"openenv-core[core]>=0.2.2",
"openai>=1.0.0",
"gradio>=4.0.0",
"numpy>=1.24.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"httpx>=0.25.0",
"pytest-asyncio>=0.23.0",
]
[project.scripts]
server = "traffic_control.server.app:main"
# ββ Setuptools config ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# pyproject.toml lives in openv/traffic_control/
# The Python package traffic_control/ lives one level UP at openv/
# so we point package-dir to the parent.
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["traffic_control*"] |