This commit is contained in:
Waylon Walker 2022-08-09 09:47:38 -05:00
commit 71eab32f1d
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
8 changed files with 1117 additions and 0 deletions

53
setup.cfg Normal file
View file

@ -0,0 +1,53 @@
[bumpversion]
current_version = 0.0.1
commit = True
tag = True
[bumpversion:file:setup.py]
[bumpversion:file:pyvers/__init__.py]
[bumpversion:file:pyvers/cli.py]
[bumpversion:file:pyvers/commit_parser.py]
[pydocstyle]
inherit = false
match = (?!punch_).*\.py
[tool:pytest]
addopts = -ra -q --cov=pyvers --cov-fail-under=100 --cov-report=term-missing
testpaths =
tests
[coverage:report]
omit =
pyvers/cli.py
pyvers/get_pipelines.py
pyvers/sample_data.py
pyvers/logger.py
exclude_lines =
if __name__ == .__main__.:
if TYPE_CHECKING:
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
disallow_untyped_calls = True
allow_untyped_globals = False
[mypy-tests.*]
ignore_errors = True
[mypy-setuptools]
ignore_missing_imports = True
[mypy-rich.*]
ignore_missing_imports = True
[flake8]
ignore = E203, E266, E501, W503, E231, F541
max-line-length = 88
select = B,C,E,F,W,T4,B9