-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.cfg
99 lines (86 loc) · 2 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
89
90
91
92
93
94
95
96
97
98
99
[metadata]
name = rxv
description = Automation Library for Yamaha RX-V473, RX-V573, RX-V673, RX-V773 receivers
long_description = file: README.md
long_description_content_type = text/x-rst
maintainer = Wojciech Bederski
maintainer-email = [email protected]
author = Wojciech Bederski
author-email = [email protected]
url = https://github.com/wuub/rxv
project_urls =
Source=https://github.com/wuub/rxv
Tracker=https://github.com/wuub/rxv/issues
platforms = any
license = BSD
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Framework :: tox
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Home Automation
Topic :: Software Development :: Libraries
Topic :: Utilities
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
requests
defusedxml
[options.extras_require]
testing =
black
flake8
mock
pytest
pytest-cov
pytest-timeout
pytest-vcr
requests-mock
tox
[wheel]
universal = 1
[tox:tox]
minversion = 3.7
isolated_build = true
skip_missing_interpreters = true
envlist =
flake8
manifest
py{37,38,39}
[gh-actions]
python =
3.7: py37
3.8: py38, flake8, manifest
3.9: py39
[coverage:run]
source_pkgs=
rxv
[testenv]
extras = testing
commands = py.test --cov --cov-report=term --cov-report=xml {posargs}
[testenv:flake8]
description = run flake8 under {basepython}
commands = flake8 rxv/ tests/
extras = testing
[testenv:manifest]
basepython = python3.8
deps = check-manifest
skip_install = true
commands = check-manifest
[check-manifest]
ignore =
rxv/version.py
[flake8]
exclude = .cache,.git,.tox,.eggs,build,docs/*,*.egg-info
max-line-length = 100
[isort]
skip = .tox,.eggs