mirror of
https://github.com/mwalbeck/podfox.git
synced 2025-04-12 17:28:05 +00:00
21 lines
517 B
Python
21 lines
517 B
Python
from setuptools import setup
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.read().splitlines()
|
|
|
|
setup(name='podfox',
|
|
version='0.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=required,
|
|
)
|