-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
107 lines (98 loc) · 2.29 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
100
101
102
103
104
105
106
107
# coding: utf-8
[metadata]
name = blinkenxmas
version = 0.7.2
description = Making your Christmas tree vomit rainbows since 2023
long_description = file: README.rst
author = Dave Jones
author_email = [email protected]
keywords = xmas christmas tree pico neopixels ws2812 apa102
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = find:
python_requires = >=3.7
install_requires =
paho-mqtt
chameleon
numpy
colorzero
mpremote<1.0dev
pillow
pyserial
docutils
importlib_resources~=1.3;python_version<'3.9'
importlib_metadata~=4.6;python_version<'3.10'
[options.package_data]
blinkenxmas =
*.conf
*.html
*.css
*.js
*.pt
*.png
*.jpg
*.svg
[options.extras_require]
test =
pytest
pytest-cov
doc =
sphinx
sphinx-rtd-theme
pi =
picamera
[options.entry_points]
console_scripts =
bxweb = blinkenxmas.web:main
bxcli = blinkenxmas.cli:main
bxflash = blinkenxmas.flash:main
blinkenxmas_animations =
builtin = blinkenxmas.animations
[tool:pytest]
addopts = -rsx --cov --tb=short
testpaths = tests
# Yes, we know about chameleon's deprecation warnings on ast
filterwarnings =
ignore::DeprecationWarning:chameleon.*
ignore::DeprecationWarning:ast
[coverage:run]
source = blinkenxmas
branch = true
[coverage:report]
show_missing = true
exclude_lines =
raise NotImplementedError
assert False
[copyrights:settings]
include =
**/*.py
**/*.rst
exclude =
docs/examples/*.py
docs/license.rst
license = LICENSE.txt
preamble =
blinkenxmas: Controls blinky lights on my Christmas tree!
strip-preamble = false
[previewer:settings]
command = make -C docs html
html = build/html
watch =
blinkenxmas/*.py
docs/*.rst
docs/images/*
README.rst