-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
51 lines (48 loc) · 1.18 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
[metadata]
name = dsul
version = 0.4.5
description = Disturb State USB Light
license = MIT
url = https://github.com/hymnis/dsul-python
author = hymnis
author_email = hymnis@plazed.net
readme = README.md
platforms = linux, windows, macos
keywords = usb dsul led rgb
classifiers = [
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities"]
[options]
packages = dsul
install_requires =
configparser >= 4.0.2
pyserial == 3.4
PyYAML >= 5.3
[options.entry_points]
console_scripts =
dsul-daemon = dsul.daemon:main [pyserial]
dsul-cli = dsul.cli:main
[tool:pytest]
testpaths =
tests
norecursedirs=dist build .tox scripts assets
addopts =
--doctest-modules
--cov-config=setup.cfg
--cov-append
--cov-report=xml
--cov=dsul
-r a
-v