forked from justquick/django-activity-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from distutils.core import setup
from actstream import __version__
setup(name='django-activity-stream',
version=__version__,
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',
'actstream.migrations',
'actstream.templatetags'],
package_data={'actstream': ['conf/locale/*/LC_MESSAGES/*.po',
'templates/activity/*.html']},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)