1
0
Fork 0
mirror of https://github.com/mwalbeck/podfox.git synced 2025-04-06 15:25:25 +00:00

fixed pip installability via pypi

This commit is contained in:
Bastian Reitemeier 2016-09-26 23:49:26 +02:00
parent 0a61694c32
commit 3f8e0375ff
2 changed files with 8 additions and 3 deletions

View file

@ -277,7 +277,7 @@ def pretty_print_episodes(feed):
print(format_str.format(e['title'][:40], status))
if __name__ == '__main__':
def main():
colorama.init()
arguments = docopt(__doc__, version='p0d 0.01')
# before we do anything with the commands,

View file

@ -4,7 +4,7 @@ with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='podfox',
version='0.1',
version='0.1.1',
description='Podcatcher for the terminal',
url='http://github.com/brtmr/podfox',
author='Bastian Reitemeier',
@ -17,5 +17,10 @@ setup(name='podfox',
'podfox = podfox.__init__:main'
]
},
install_requires=required,
install_requires=[
'colorama==0.3.7',
'docopt==0.6.2',
'feedparser==5.2.1',
'requests==2.11.1',
],
)