-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
44 lines (41 loc) · 1.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
[metadata]
name = django-materialized-view
url = https://github.com/muehlemann-popp/django-materialized-view
description = Plugin for django to support Materialized Views
long_description = file: README.md
long_description_content_type = text/markdown
description_file = README.md
author = Farruh Sheripiov
author_email = [email protected]
maintainer = Silvan Mühlemann
maintainer_email = [email protected]
license='MIT'
classifiers =
Intended Audience :: Developers
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development
Framework :: Django
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
include_package_data = true
packages = find:
python_requires = >=3.8
install_requires =
Django >= 4.0
[upload]
repository = mpom
show_response = 1
[flake8]
exclude=.tox,.git,*/migrations/*,*/static/*,docs,.venv,__init__.py
ignore = E203, E266, E501, W503
max-line-length = 120
max-complexity = 18
select = B,C,E,F,W,T4