forked from justquick/django-activity-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.25 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
27
28
29
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',
'actstream.runtests',
'actstream.runtests.testapp'],
package_data={'actstream': ['locale/*/LC_MESSAGES/*.po',
'templates/actstream/*.html']},
zip_safe=False,
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'],
)