-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (31 loc) · 1014 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name='vydia',
version='0.6.4',
description='A modularized video player with resume function',
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
url='https://github.com/kpj/Vydia',
author='kpj',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Video :: Display',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only'
],
keywords='vydia video playback',
packages=find_packages(exclude=['tests']),
install_requires=[
'appdirs', 'pafy', 'urwid', 'urwid_readline',
'click', 'python-mpv', 'logzero', 'hachoir3',
'airplay', 'nanodlna'
],
entry_points={
'console_scripts': [
'vydia=vydia:main',
],
}
)