added setup.py for pip-installability
This commit is contained in:
parent
873211decf
commit
9f32bcc43a
1 changed files with 21 additions and 0 deletions
21
setup.py
Normal file
21
setup.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
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,
|
||||
)
|
Loading…
Add table
Reference in a new issue