forked from scailer/django-user-activity-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (40 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
from setuptools import setup
DESCRIPTION = """
This django app intended for writing HTTP log to database
and/or watch last user activity.
Features:
- DB router for writing logs to another database.
- Filters for ignoring some queries by URL, HTTP methods and response codes.
- Saving anonymous activity as fake user.
More: https://github.com/scailer/django-user-activity-log
"""
setup(
name='django-user-activity-log',
version='0.0.15',
author='Dmitriy Vlasov',
author_email='[email protected]',
include_package_data=True,
packages=[
'activity_log',
'activity_log.migrations',
],
url='https://github.com/scailer/django-user-activity-log/',
license='MIT license',
description='HTTP queries logger with flexible filters.',
long_description=DESCRIPTION,
install_requires=[
],
classifiers=(
'Framework :: Django',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
),
)