forked from justquick/django-activity-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.58 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
30
31
32
33
34
35
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 actors\' activities for personalized streams.',
long_description=open('README.rst').read(),
author='Justin Quick',
license='BSD 3-Clause',
author_email='justquick@gmail.com',
url='http://github.com/justquick/django-activity-stream',
packages=['actstream',
'actstream.migrations',
'actstream.templatetags',
'actstream.tests',
'actstream.runtests',
'actstream.runtests.testapp',
'actstream.runtests.testapp.migrations',
'actstream.runtests.testapp_nested',
'actstream.runtests.testapp_nested.migrations',
'actstream.runtests.testapp_nested.models',
],
package_data={'actstream': ['locale/*/LC_MESSAGES/*.po',
'templates/actstream/*.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',
'Programming Language :: Python :: 3',
'Topic :: Utilities'],
)