-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
47 lines (37 loc) · 1.02 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
[metadata]
name = get-releasenote
url = https://github.com/aio-libs/get-releasenote
project_urls =
GitHub = https://github.com/aio-libs/get-releasenote
description = Towncrier changelog extractor
long_description = file: README.rst
long_description_content_type = text/x-rst
license = Apache 2.0
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
python_requires = >=3.7
packages = find:
include_package_data = True
install_requires =
packaging >= 21.3
[flake8]
exclude = .git,.env,__pycache__,.eggs
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541
[isort]
profile=black
[tool:pytest]
addopts = --cov=get_releasenote -v --cov-branch --cov-report xml
filterwarnings =
error
minversion = 3.8.2
testpaths = tests.py
junit_family=xunit2
xfail_strict = true