-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
59 lines (52 loc) · 1.37 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
[metadata]
name = remoteprotocols
version = attr: remoteprotocols.__version__
author = Adrian Panella
author_email = [email protected]
description = Manage and convert many IR / RF remote protocols
long_description = file: README.md
long_description_content_type = text/markdown
license=MIT
license_files=LICENSE.md
url = https://github.com/ianchi/remoteprotocols
project_urls =
Bug Tracker = https://github.com/ianchi/remoteprotocols/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Embedded Systems
Topic :: Home Automation
[options]
package_dir =
= .
packages = find:
include_package_data=True
python_requires = >=3.8
install_requires =
voluptuous>=0.12.2,<1.0
[options.package_data]
* = *.yaml, *.typed
[options.packages.find]
where = .
[options.entry_points]
console_scripts =
remoteprotocols = remoteprotocols.__main__:main
[flake8]
max-line-length = 120
# Following 4 for black compatibility
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
# D105 Missing docstring in magic method
# D107 Missing docstring in __init__
ignore =
E501,
W503,
E203,
D202,
D105,
D107
[bdist_wheel]
universal = 1