mirror of
https://github.com/jellyfin/jellyfin-mpv-shim.git
synced 2024-11-23 22:19:42 +00:00
30 lines
869 B
Python
30 lines
869 B
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='plex-mpv-shim',
|
|
version='1.3.0',
|
|
author="Ian Walton",
|
|
author_email="iwalton3@gmail.com",
|
|
description="Cast media from Plex Mobile and Web apps to MPV. (Unofficial)",
|
|
license='MIT',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/iwalton3/plex-mpv-shim",
|
|
packages=['plex_mpv_shim'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'plex-mpv-shim=plex_mpv_shim.mpv_shim:main',
|
|
]
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
install_requires=['python-mpv', 'requests']
|
|
)
|