2019-08-19 22:23:24 +00:00
|
|
|
from setuptools import setup
|
2019-08-18 06:02:09 +00:00
|
|
|
|
2019-09-15 23:22:57 +00:00
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
2019-08-18 06:02:09 +00:00
|
|
|
setup(
|
2020-01-11 03:53:31 +00:00
|
|
|
name='jellyfin-mpv-shim',
|
2020-04-07 15:23:20 +00:00
|
|
|
version='1.5.6',
|
2019-09-15 23:22:57 +00:00
|
|
|
author="Ian Walton",
|
|
|
|
author_email="iwalton3@gmail.com",
|
2020-01-11 03:53:31 +00:00
|
|
|
description="Cast media from Jellyfin Mobile and Web apps to MPV. (Unofficial)",
|
2020-01-11 18:39:38 +00:00
|
|
|
license='GPLv3',
|
2019-08-18 06:02:09 +00:00
|
|
|
long_description=open('README.md').read(),
|
2019-09-15 23:22:57 +00:00
|
|
|
long_description_content_type="text/markdown",
|
2020-01-11 03:53:31 +00:00
|
|
|
url="https://github.com/iwalton3/jellyfin-mpv-shim",
|
2020-03-29 19:11:24 +00:00
|
|
|
packages=[
|
|
|
|
'jellyfin_mpv_shim',
|
|
|
|
'jellyfin_mpv_shim.display_mirror',
|
|
|
|
'jellyfin_mpv_shim.webclient_view'
|
|
|
|
],
|
2020-02-22 02:42:27 +00:00
|
|
|
package_data={
|
|
|
|
'jellyfin_mpv_shim.display_mirror': ['*.css', '*.html'],
|
|
|
|
'jellyfin_mpv_shim': ['systray.png'],
|
|
|
|
},
|
2019-08-19 22:23:24 +00:00
|
|
|
entry_points={
|
2019-08-18 06:02:09 +00:00
|
|
|
'console_scripts': [
|
2020-01-11 18:39:38 +00:00
|
|
|
'jellyfin-mpv-shim=jellyfin_mpv_shim.mpv_shim:main',
|
2020-03-29 19:11:24 +00:00
|
|
|
'jellyfin-mpv-desktop=jellyfin_mpv_shim.mpv_shim:main_desktop',
|
2019-08-18 06:02:09 +00:00
|
|
|
]
|
|
|
|
},
|
2019-09-15 23:22:57 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
2020-01-11 18:39:38 +00:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
2019-09-15 23:22:57 +00:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2020-02-22 02:42:27 +00:00
|
|
|
extras_require = {
|
|
|
|
'gui': ['pystray'],
|
|
|
|
'mirror': ['Jinja2', 'pywebview'],
|
2020-03-29 19:11:24 +00:00
|
|
|
'desktop': ['Flask', 'pywebview', 'Werkzeug'],
|
2020-04-07 02:48:53 +00:00
|
|
|
'all': ['Jinja2', 'pywebview', 'pystray', 'Flask', 'Werkzeug'],
|
2020-02-22 02:42:27 +00:00
|
|
|
},
|
2019-09-15 23:22:57 +00:00
|
|
|
python_requires='>=3.6',
|
2020-03-23 18:41:27 +00:00
|
|
|
install_requires=['python-mpv', 'jellyfin-apiclient-python>=1.4.0', 'python-mpv-jsonipc>=1.1.8'],
|
2020-01-16 22:56:17 +00:00
|
|
|
include_package_data=True
|
2019-08-18 06:02:09 +00:00
|
|
|
)
|