-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
105 lines (93 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[metadata]
name = dj_logger
version = 0.1
description = A Django app to log all exceptions, errors and user activity.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://www.fearlessspider.com/
author = Przemysław Pająk
author_email = [email protected]
license = BSD-3-Clause
classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.0
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
project_urls =
Documentation = https://github.com/fearlessspider/django-logger/docs
Source = https://github.com/fearlessspider/django-logger
Tracker = https://github.com/fearlessspider/django-logger/issues
keywords = logger
python_requires = '>=3.6'
[options]
include_package_data = true
packages = django_logger
install_requires =
Django>=3.0
setup_requires =
setuptools_scm
pytest-runner
test_suite = load_tests.get_suite
[options.extras_require]
docs =
Sphinx
docutils
repoze.sphinx.autointerface
tests =
tox
mock
pytest
pytest-cov
pytest-django
[options.packages.find]
exclude =
tests
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[tool:pytest]
norecursedirs=venv env .eggs
addopts =
--cov=django_logger
DJANGO_SETTINGS_MODULE=django_logger_project.django_logger_project.settings
[coverage:run]
source = .
omit =
*/migrations/*
*/tests/*
*/test_*.py
.tox
[coverage:report]
show_missing = True
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
[flake8]
max-line-length=88
select = C,E,F,W,B,B950
ignore = E203, E501, W503
exclude = venv,.tox,.eggs
[pydocstyle]
add-ignore = D1
[isort]
atomic = true
line_length = 88
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
known_first_party = measurement, tests
default_section=THIRDPARTY
combine_as_imports = true