|
| 1 | +from setuptools import setup, find_packages |
| 2 | +import pathlib |
| 3 | + |
| 4 | +here = pathlib.Path(__file__).parent.resolve() |
| 5 | +long_description = (here / "README.md").read_text(encoding="utf-8") |
| 6 | + |
| 7 | +setup( |
| 8 | + name="livekit", |
| 9 | + version="0.0.1", |
| 10 | + description="A sample Python project", |
| 11 | + long_description=long_description, |
| 12 | + long_description_content_type="text/markdown", |
| 13 | + url="https://github.com/livekit/client-sdk-python", |
| 14 | + classifiers=[ |
| 15 | + # 3 - Alpha |
| 16 | + # 4 - Beta |
| 17 | + # 5 - Production/Stable |
| 18 | + "Development Status :: 3 - Alpha", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "License :: OSI Approved :: Apache Software License", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.7", |
| 23 | + "Programming Language :: Python :: 3.8", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
| 27 | + ], |
| 28 | + |
| 29 | + keywords="webrtc, livekit", |
| 30 | + packages=["livekit"], |
| 31 | + python_requires=">=3.7, <4", |
| 32 | + install_requires=["pyee>=9.0.0"], |
| 33 | + package_data={ |
| 34 | + "livekit": ['lib/*/*/*.*'], |
| 35 | + }, |
| 36 | + project_urls={ |
| 37 | + "Website": "https://livekit.io/", |
| 38 | + "Source": "https://github.com/livekit/client-sdk-python/", |
| 39 | + }, |
| 40 | +) |
0 commit comments