-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.16 KB
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import termipod
setup(name='termipod',
version=termipod.__version__,
description='Manage and read podcasts and youtube'
'videos in your terminal',
author='Cyril Bordage',
long_description=open('README.md').read(),
packages=find_packages(),
install_requires=[
'feedparser',
'appdirs',
'youtube_dl',
'python-mpv',
],
extras_require={
'httpserver': ['twisted'],
'fuse': ['pyfuse3', 'trio'],
},
url='https://github.com/rools32/termipod',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
entry_points={
'console_scripts': [
'termipod = termipod.termipod:main',
],
},
keywords='podcast curses terminal rss youtube')