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-02-19 21:31:49 +00:00
|
|
|
version='1.3.10',
|
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-02-19 07:35:40 +00:00
|
|
|
packages=['jellyfin_mpv_shim', 'jellyfin_mpv_shim.display_mirror'],
|
|
|
|
package_data={'jellyfin_mpv_shim.display_mirror': ['*.css', '*.html']},
|
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',
|
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",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
2020-02-19 21:25:45 +00:00
|
|
|
install_requires=['python-mpv', 'jellyfin-apiclient-python>=1.4.0', 'python-mpv-jsonipc>=1.1.5'],
|
2020-01-16 22:56:17 +00:00
|
|
|
include_package_data=True
|
2019-08-18 06:02:09 +00:00
|
|
|
)
|