-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
except: | ||
pass | ||
|
||
__version__ = '0.10.0' | ||
__version__ = '1.4.0' | ||
__author__ = 'Asif Saif Uddin, Justin Quick <[email protected]>' | ||
default_app_config = 'actstream.apps.ActstreamConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
from actstream import __version__ | ||
from actstream import __version__, __author__ | ||
|
||
setup(name='django-activity-stream', | ||
version=__version__, | ||
description='Generate generic activity streams from the actions on your ' | ||
'site. Users can follow any actors\' activities for personalized streams.', | ||
long_description=open('README.rst').read(), | ||
author='Justin Quick', | ||
author=__author__, | ||
license='BSD 3-Clause', | ||
author_email='[email protected]', | ||
url='http://github.com/justquick/django-activity-stream', | ||
|