forked from django-query-profiler/django-query-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
79 lines (72 loc) · 1.93 KB
/
setup.cfg
File metadata and controls
79 lines (72 loc) · 1.93 KB
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
[metadata]
name = django-query-profiler
version = 0.4
description = Django query profiler
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/django-query-profiler/django-query-profiler
author = Yash Maheshwari, Glynn Morrison
author_email = yash.maheshwari@gmail.com, glynn@zenefits.com, django.query.profiler@gmail.com
license = BSD-3-Clause
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.0
Framework :: Django :: 2.1
Framework :: Django :: 2.2
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.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
Intended Audience :: Developers
[options]
include_package_data = true
packages = find:
zip_safe = false
test_suite = runtests.run_tests
setup_requires =
flake8
isort
tests_require =
flake8
coverage
fakeredis
install_requires =
setuptools
django
moz-sql-parser
redis
mmh3
isort
dataclasses; python_version < "3.7"
python_requires = >=3.6
[options.packages.find]
exclude =
tests
[bdist_wheel]
universal = true
[flake8]
max-line-length = 120
exclude = .git, .eggs, __pycache__, docs/, build/, dist/
[isort]
line_length=120
default_section = THIRDPARTY
known_first_party = django_query_profiler
known_third_party = django mmh3
multi_line_output = 5
[coverage:run]
include = django_query_profiler/*
omit = django_query_profiler/tests/*
[coverage:report]
omit =
django_query_profiler/runtests.py
django_query_profiler/tests/*