|
1 | 1 | [build-system] |
2 | | -requires = [ |
3 | | - "setuptools>=42", |
4 | | -] |
| 2 | +requires = ["setuptools>=42"] |
5 | 3 | build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "livekit-api" |
| 7 | +version = "0.8.0" |
| 8 | +description = "Python Server API for LiveKit" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.9.0" |
| 11 | +license = "Apache-2.0" |
| 12 | +keywords = ["webrtc", "realtime", "audio", "video", "livekit"] |
| 13 | +authors = [ |
| 14 | + { name = "LiveKit", email = "support@livekit.io" } |
| 15 | +] |
| 16 | +classifiers = [ |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: Apache Software License", |
| 19 | + "Topic :: Multimedia :: Sound/Audio", |
| 20 | + "Topic :: Multimedia :: Video", |
| 21 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.7", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: 3 :: Only", |
| 28 | +] |
| 29 | +dependencies = [ |
| 30 | + "pyjwt>=2.0.0", |
| 31 | + "aiohttp>=3.9.0", |
| 32 | + "protobuf>=4", |
| 33 | + "types-protobuf>=4", |
| 34 | + "livekit-protocol>=1.1.1,<2.0.0", |
| 35 | +] |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +Documentation = "https://docs.livekit.io" |
| 39 | +Website = "https://livekit.io/" |
| 40 | +Source = "https://github.com/livekit/python-sdks/" |
| 41 | + |
| 42 | +[tool.uv.sources] |
| 43 | +livekit-protocol = { workspace = true } |
0 commit comments