Skip to content

Commit

Permalink
dump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Burón committed Sep 3, 2013
1 parent f0767e8 commit 12feba3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pedro Burón
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@ Management Command
::

python manage.py update_lifestreams <lifestream_name>


.. comment: split here
4 changes: 3 additions & 1 deletion lifestreams/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'''
A lifestreams application for Django
'''
'''

__version__ = '0.1.0'
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import os
from setuptools import setup, find_packages


def read_file(filename):
"""Read a file into a string"""
path = os.path.abspath(os.path.dirname(__file__))
Expand All @@ -11,11 +12,13 @@ def read_file(filename):
except IOError:
return ''

long_description = read_file('README.rst').strip().split('split here', 1)[0]

setup (
name='django-lifestreams',
version='0.1',
version=__import__('lifestreams').__version__,
description=' '.join(__import__('lifestreams').__doc__.splitlines()).strip(),
long_description=long_description,
author='Pedro Buron',
author_email='pedro@witoi.com',
url='http://github.com/witoi/django-lifestreams',
Expand Down

0 comments on commit 12feba3

Please sign in to comment.