Skip to content

Commit

Permalink
add feedparser dependence, and change version number
Browse files Browse the repository at this point in the history
  • Loading branch information
manolomartinez committed Oct 13, 2013
1 parent 58e6883 commit e1c94ad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup

setup( name='Greg',
version='0.1.0',
version='0.4.0',
description='A command-line podcast aggregator',
author='Manolo Martínez',
author_email='[email protected]',
url='https://github.com/manolomartinez/greg',
packages=['greg'],
scripts=['bin/greg'],
data_files=[('/etc',['data/greg.conf'])],
license = 'GPLv3'
license = 'GPLv3',
install_requires = ['feedparser']
)

0 comments on commit e1c94ad

Please sign in to comment.