-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (64 loc) · 1.67 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
[metadata]
name = django-pipelines
version = 0.1.1
description = Tools for building data pipelines with Django
long_description = file: README.rst
url = https://github.com/wildfish/django-pipelines
author = Wildfish
author_email = [email protected]
license = BSD-3-Clause
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
[options]
include_package_data = true
packages = find:
python_requires = >=3.9
install_requires =
Django >= 3.2
django_extensions
celery
pydantic
[tool:pytest]
testpaths =
tests
pipelines
addopts = --black --isort --mypy --cov=pipelines --cov-report=term --cov-report=html
DJANGO_SETTINGS_MODULE = tests.settings
django_find_project = false
pythonpath = . src
[flake8]
max-line-length = 88
ignore = E123,E128,E203,E501,W503
exclude = .git,*/migrations/*,*/static/CACHE/*,docs,*/snapshots/*
[isort]
multi_line_output = 3
line_length = 88
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
include_trailing_comma = True
lines_after_imports = 2
skip = .git,migrations
[coverage:run]
omit =
*/migrations/*
*/snapshots/*
[doc8]
max-line-length = 88
ignore-path = *.txt
[mypy]
ignore_missing_imports = True
check_untyped_defs = true
[mypy-*.migrations.*]
ignore_errors = True