mirror of
https://github.com/mwalbeck/podfox.git
synced 2025-04-06 23:28:49 +00:00
27 lines
672 B
Python
27 lines
672 B
Python
from setuptools import setup
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.read().splitlines()
|
|
|
|
setup(name='podfox',
|
|
version='0.1.1',
|
|
description='Podcatcher for the terminal',
|
|
url='http://github.com/brtmr/podfox',
|
|
author='Bastian Reitemeier',
|
|
author_email='mail@brtmr.de',
|
|
license='GPLv3',
|
|
packages=['podfox'],
|
|
zip_safe=False,
|
|
entry_points={
|
|
'console_scripts' : [
|
|
'podfox = podfox.__init__:main'
|
|
]
|
|
},
|
|
install_requires=[
|
|
'colorama>=0.3.7,<=0.3.9',
|
|
'docopt==0.6.2',
|
|
'feedparser==5.2.1',
|
|
'requests>=2.11.1,<=2.18.1',
|
|
'tqdm==4.14.0',
|
|
],
|
|
)
|