46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
#!/usr/bin/env python3
|
|
"""Setup script for VLChan."""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="vlchan",
|
|
version="0.1.0",
|
|
author="Justin Lin",
|
|
author_email="wancat@wancat.cc",
|
|
description="VLC video player with synchan timecode synchronization",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
],
|
|
python_requires=">=3.11",
|
|
install_requires=[
|
|
"python-vlc>=3.0.20123",
|
|
"reactivex>=4.0.4",
|
|
"python-socketio[client]>=5.14.1",
|
|
"requests>=2.32.5",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"mypy>=1.17.1",
|
|
"ruff>=0.12.12",
|
|
],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"vlchan=vlchan.player:main",
|
|
],
|
|
},
|
|
)
|