-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
58 lines (48 loc) · 1.21 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
[metadata]
description = Serialize dnspython2 Responses Into Standard JSON or Native Python Objects
maintainer = mzpqnxow
maintainer_email = copyright@mzpqnxow.com
author = Adam Greene
author_email = copyright@mzpqnxow.com
url = https://github.com/mzpqnxow/dnspyjson
name = dnspyjson
requires-python = >=3.5
license-file = COPYING
license = BSD-3-Clause
[versioneer]
parentdir_prefix =
versionfile_source = dnspyjson/_version.py
versionfile_build = dnspyjson/_version.py
VCS = git
style = pep440
tag_prefix =
[options]
# package_dir = = src
packages = find:
zip_safe = false
include_package_data = true
python_requires = >=3.5
install_requires =
dnspython>=2
[options.entry_points]
console_scripts =
json-resolve = dnspyjson.app:json_resolve_main
[pep8]
max-line-length = 140
[yapf]
based_on_style = pep8
spaces_before_comment = 2
split_before_logical_operator = true
[pycodestyle]
ignore = E501,W605
[flake8]
max-line-length = 140
doctests = False
exclude = .git, packages/ , __pycache__, tests/, docs/, build/, dist/, venv/, etc/
[clean]
all = 1
[pylint.]
ignore=.git,venv,packages,pybuild,Makefile,README.md,etc,_version.py
ingore-pattern=_version.py,versioneer.py
disable=consider-using-sys-exit
max-line-length=140