-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
64 lines (58 loc) · 1.43 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
[metadata]
name = django_trackings
version = 0.7.0a1
description = A Django app that tracks your queries to help optimize them.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tijani-dia/dj-tracker/
author = Tidiane Dia
author_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
project_urls =
Documentation=https://tijani-dia.github.io/dj-tracker/
Source=https://github.com/tijani-dia/dj-tracker/
Issue tracker=https://github.com/tijani-dia/dj-tracker/issues/
[options]
packages = find_namespace:
install_requires =
django>=3.2
django-filter
python_requires = >=3.8
include_package_data = True
package_dir = =src
zip_safe = False
[options.packages.find]
where = src
[options.extras_require]
dev =
Cython==3.0.11
autoflake
black>=23.1
factory-boy
flake8
isort
pytailwindcss
docs =
mkdocs
mkdocs-material
test =
factory-boy
[bdist_wheel]
python-tag = py3
[tool:isort]
profile = black
known_first_party = "dj_tracker"
[flake8]
extend-ignore = E501, E203
exclude = **/migrations/*.py
filename = *.py, *.pyx
per-file-ignores = src/dj_tracker/*.pyx:E999