forked from django-request/django-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (57 loc) · 1.79 KB
/
setup.cfg
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
50
51
52
53
54
55
56
57
58
59
60
61
[metadata]
name = django-request
version = 1.6.3
url = https://django-request.readthedocs.io/en/latest/
download_url = https://pypi.org/project/django-request/
author = Kyle Fuller
author_email = [email protected]
maintainer = Mariusz Felisiak
maintainer_email = [email protected]
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 = file: README.rst
long_description_content_type = text/x-rst
license = BSD
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
install_requires =
Django>=2.2
python-dateutil
packages =
request
request.migrations
request.templatetags
request.management
request.management.commands
[options.package_data]
request =
templates/admin/request/*.html
templates/admin/request/request/*.html
templates/request/plugins/*.html
static/request/js/*.js
locale/*/LC_MESSAGES/*.*
[flake8]
exclude = .git,.tox,build,./request/migrations
max-line-length = 119
[isort]
skip = migrations,.tox,build
line_length = 119