This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
76 lines (52 loc) · 1.5 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
[flake8]
show-source = True
max-line-length = 100
# Configure flake8-import-order
application-import-names = fedora_messaging_infragit
import-order-style = pep8
[metadata]
author = Randy Barlow
author_email = [email protected]
classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3
description = Sends fedora messages when commits are made to the Fedora Infrastructure Ansible repository
keywords =
fedora-messaging
license = GPLv3
long_description = file: README.md, COPYING
name = fedora-messaging-infragit
url = https://github.com/fedora-infra/fedora-messaging-infragit/
version = attr: fedora_messaging_infragit.VERSION
[mypy-fedora_messaging.*]
ignore_missing_imports = True
[mypy-jsonschema.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[options]
include_package_data = True
packages = find:
install_requires =
fedora-messaging
[options.entry_points]
console_scripts =
fedora-messaging-infragit-receive = fedora_messaging_infragit.receive:main
fedora.messages =
infragit.receive.v1 = fedora_messaging_infragit.messages.receive:ReceiveV1
[options.package_data]
* = *.json
[options.packages.find]
exclude =
tests
[report]
precision = 1
fail_under = 100
show_missing = True
[run]
branch = True
source = fedora_messaging_infragit
[tool:pytest]
addopts = --cov-config setup.cfg --cov=fedora_messaging_infragit --cov-report term