-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
62 lines (54 loc) · 1.66 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
[flake8]
ignore = E501,F405,W605,W504
# Flake plugins:
inline-quotes = single
accept-encodings = utf-8
isort-show-traceback = True
# Docs: https://github.com/snoack/flake8-per-file-ignores
# You can completely or partially disable our custom checks,
# to do so you have to ignore `Z` letter for all python files:
per-file-ignores =
./wsgi.py: E402
./settings/*.py: F403
# Ignore pass strings like "()[]{}|\`~!@#$%^&*_-+=;:'\",<>./?"
./apps/profiles/password_validators.py: W605
# Ignore Key:
# E501 -- line too long
# F405 -- name may be undefined, or defined from star imports
# F403 -- unable to detect undefined name
# W605 -- invalid escape sequence
# W504 -- line break after binary operator
[tool:pytest]
addopts = --reuse-db
DJANGO_SETTINGS_MODULE = testproject.settings
pythonpath = . testproject
python_files =
tests/integration/*.py
tests/functional/*.py
[metadata]
name = django-ckc
author = Eric Carmichael
author_email = [email protected]
description = tools, utilities, etc. we use across projects @ ckc
version = 0.0.10
url = https://github.com/ckcollab/django-ckc
keywords =
django
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
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
Topic :: Software Development
long_description = file: README.md
long_description_content_type = text/markdown
license_files =
LICENSE
[options]
python_requires = >= 3.6
packages = find:
zip_safe: False