feat: init project

This commit is contained in:
Justin Lin
2025-10-09 16:31:57 +11:00
commit ca0a880c80
13 changed files with 1262 additions and 0 deletions

45
setup.py Normal file
View File

@@ -0,0 +1,45 @@
#!/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",
],
},
)