forked from justquick/django-activity-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.54 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
36
37
try:
from setuptools import setup
except ImportError:
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='[email protected]',
url='http://github.com/justquick/django-activity-stream',
packages=['actstream',
'actstream.migrations',
'actstream.templatetags',
'actstream.tests',
],
package_data={'actstream': ['locale/*/LC_MESSAGES/*.po',
'templates/actstream/*.html']},
install_requires=['jsonfield>=2.0.2', 'django-jsonfield-compat>=0.4.4'],
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'],
extras_require={
'jsonfield': ['django-jsonfield>=1.0.1',
'django-jsonfield-compat>=0.4.4'],
},
)