mirror of
https://github.com/mwalbeck/podfox.git
synced 2025-04-02 22:18:22 +00:00
update setup.py
This commit is contained in:
parent
d2a3e1e402
commit
13abc5b331
1 changed files with 7 additions and 1 deletions
8
setup.py
8
setup.py
|
@ -3,7 +3,13 @@ from setuptools import setup
|
|||
with open('requirements.txt') as f:
|
||||
required = f.read().splitlines()
|
||||
|
||||
setup(name='podfox', zip_safe=False,
|
||||
setup(name='podfox',
|
||||
version='0.1.3',
|
||||
description='Podcatcher for the terminal',
|
||||
url='https://github.com/mwalbeck/podfox',
|
||||
license='GPLv3',
|
||||
packages=['podfox'],
|
||||
zip_safe=False,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'podfox = podfox.__init__:main'
|
||||
|
|
Loading…
Add table
Reference in a new issue