forked from django-request/django-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.6 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
#!/usr/bin/env python
from distutils.core import setup
import request
setup(
name='django-request',
version='%s' % request.__version__,
description='django-request is a statistics module for django. It stores requests in a database for admins to see, it can also be used to get statistics on who is online etc.',
long_description="""
django-request is a statistics module for django. It stores requests in a database for admins to see, it can also be used to get statistics on who is online etc.
.. image:: http://media.kylefuller.co.uk/projects/django-request/graph.png
As well as a site statistics module, with the active_users template tag and manager method you can also use django-request to show who is online in a certain time.
""",
author='Kyle Fuller',
author_email='inbox@kylefuller.co.uk',
url=request.__URL__,
download_url='http://github.com/kylef/django-request/zipball/%s' % request.__version__,
packages=['request', 'request.templatetags', 'request.management', 'request.management.commands'],
package_data={'request': [
'templates/admin/request/*.html',
'templates/admin/request/request/*.html',
'templates/request/plugins/*.html',
'static/request/js/*.js',
]},
license=request.__licence__,
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',
]
)