2023-11-11 08:01:21 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
2023-11-28 12:11:27 +08:00
|
|
|
name = "teleoprtc"
|
2023-11-11 08:01:21 +08:00
|
|
|
version = "1.0.0"
|
2023-11-11 08:55:20 +08:00
|
|
|
authors = [{ name="Vehicle Researcher", email="user@comma.ai" }]
|
2023-11-28 12:11:27 +08:00
|
|
|
description = "Comma webRTC abstractions"
|
2023-11-11 08:01:21 +08:00
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
dependencies = [
|
2023-11-23 11:35:24 +08:00
|
|
|
"aiortc @ git+https://github.com/aiortc/aiortc.git",
|
2023-11-11 08:01:21 +08:00
|
|
|
"aiohttp>=3.7.0",
|
|
|
|
"av>=9.0.0,<11.0.0",
|
|
|
|
"numpy>=1.19.0",
|
|
|
|
]
|
|
|
|
|
2023-11-29 14:17:45 +08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
2023-11-30 04:33:19 +08:00
|
|
|
"parameterized>=0.8",
|
|
|
|
"pre-commit"
|
2023-11-29 14:17:45 +08:00
|
|
|
]
|
|
|
|
|
2023-11-11 08:01:21 +08:00
|
|
|
[project.urls]
|
2023-11-28 12:11:27 +08:00
|
|
|
"Homepage" = "https://github.com/commaai/teleop-webrtc"
|
|
|
|
"Bug Tracker" = "https://github.com/commaai/teleop-webrtc/issues"
|