-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
51 lines (46 loc) · 1.41 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
[metadata]
name = MODNAME
version = attr: MODNAME.__version__
author = wkflws node developer
description = "wkflws node - MODNAME"
readme = "README.md"
license = { file="LICENSE" }
# url = https://my-url.com
# project_urls =
# Bug Tracker = https://github.com/myorg/MODNAME/issues/
# Source = https://github.com/myorg/MODNAME/
classifiers =
Programming Language :: Python :: 3
[options]
python_requires = >= 3.10
packages = find:
install_requires =
# wkflws Framework
# License: Internal
# https://github.com/wkflws/wkflws/
#wkflws[webhook] >= 0.1,<0.2
[options.extras_require]
testing =
# The following libraries are not hosted or distributed.
black # automatic formatter
coverage # unit test coverage analyzer
flake8 # style checker
flake8-docstrings # verify docstring formatting
flake8-import-order # verify import order
mypy # static type checker
pytest # unit test discovery and runner
pytest-cov # plugin for the coverage module
pytest-mock # pytest wrapper for mock module
# https://coverage.readthedocs.io/en/6.3.2/config.html
[coverage:run]
# Measure branch coverage
branch = True
# To omit certain files
# omit = # e.g. src/db/env.py,src/db/versions/*
# Indicate the directories to evaluate
source = MODNAME/
[coverage:report]
# show missing line numbers
show_missing = True
# Omit files with 100% coverage from the report
# skip_covered = True