forked from justquick/django-activity-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
19 lines (17 loc) · 842 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(name='django-activity-stream',
version='0.1',
description='Generate generic activity streams from the actions on your site. Users can follow any actor\'s activities for personalized streams.',
long_description=open('README.rst').read(),
author='Justin Quick',
author_email='[email protected]',
url='http://github.com/justquick/django-activity-stream',
packages=['actstream'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)