mirror of
https://github.com/mwalbeck/podfox.git
synced 2025-04-06 15:25:25 +00:00
19 lines
440 B
Python
19 lines
440 B
Python
from setuptools import setup
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.read().splitlines()
|
|
|
|
setup(name='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',
|
|
],
|
|
)
|