-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
88 lines (74 loc) · 2.33 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
[metadata]
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
name = staticinflowanalysis
author = Daniel Gusenburger
author_email = [email protected]
maintainer = Daniel Gusenburger
maintainer_email = [email protected]
version = 0.1.0
description = Flake8 Plugin for static information flow analysis
long_description = file: README.md
long_description_content_type = text/markdown
keywords = flake8,
url =
download_url =
license = MIT license
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development
Framework :: Flake8
[options]
packages = staticinflowanalysis
python_requires = >=3.6.1
install_requires =
flake8>=3.7
importlib-metadata>=0.9
astor>=0.1
[options.entry_points]
flake8.extension =
STA=staticinflowanalysis.plugin:Plugin
[tool:pytest]
# addopts = --doctest-modules --cov=. --cov-report html:tests/reports/coverage-html --cov-report term-missing --ignore=docs/ --durations=3 --timeout=30
# doctest_encoding = utf-8
[pydocstyle]
match_dir = staticinflowanalysis
ignore = D104, D105, D107, D301, D413, D203, D212, D100
[flake8]
max_line_length = 88
exclude = tests/*,.tox/*,.nox/*,docs/*
ignore = H301,H306,H404,H405,W503,D105,D413,D103,D107,E252,N803,E203,C416,A001,A003,P102
[isort]
import_heading_stdlib=Core Library modules
import_heading_thirdparty=Third party modules
import_heading_firstparty=First party modules
import_heading_localfolder=Local modules
include_trailing_comma=True
indent=' '
known_third_party = pytest,setuptools
length_sort=0
line_length=80
multi_line_output=3
[mypy]
ignore_missing_imports=true
check_untyped_defs=true
disallow_untyped_defs=false
warn_unused_ignores=true
strict_optional=true
python_version=3.9
warn_redundant_casts=true
warn_unused_configs=true
disallow_untyped_calls=false
disallow_incomplete_defs=true
follow_imports=skip
html_report=mypy-report
mypy_path=typeshed/pyi:typeshed/imports