-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
99 lines (89 loc) · 1.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[metadata]
name = django-sanitized-dump
version = 1.2.2
description = Sanitized sensitive information from your database dumps
long_description = file: README.md
long_description_content_type = text/markdown
keywords = django, database, sanitization, anonymization
url = https://github.com/andersinno/django-sanitized-dump
maintainer = Anders Innovations
maintainer_email = support@anders.fi
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: System :: Systems Administration
[options]
include_package_data = True
packages = find:
zip_safe = False
install_requires =
pyyaml
six
database-sanitizer
[options.extras_require]
MySQL = PyMySQL
[options.packages.find]
exclude = tests, tests.*
[bdist_wheel]
universal = 1
[tool:pytest]
norecursedirs = .* build dist venv test_data
[flake8]
exclude =
.tox
dist
venv
build
.eggs
max-line-length = 120
max-complexity = 10
[isort]
include_trailing_comma=True
known_first_party=sanitized_dump,testapp
default_section=THIRDPARTY
line_length=79
multi_line_output=3
not_skip=__init__.py
skip=.tox,build,dist,venv
[pycodestyle]
line_length = 120
[coverage:run]
branch = True
source = tests/testapp,sanitized_dump
omit =
*migrations*
tests/test_*
[prequ]
annotate = yes
requirements-dev =
Django
mock
mock-open
pycodestyle
pyyaml
tox
requirements-test =
mock
mock-open
pytest
pytest-django
pytest-cov
pyyaml
requirements-stylecheck =
flake8
flake8-isort
flake8-print
pep8-naming