forked from sde1000/python-dali
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (43 loc) · 1.04 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
[metadata]
name = python-dali
version = 0.10
description = Interface to DALI lighting systems
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Stephen Early
author_email = [email protected]
url = https://github.com/sde1000/python-dali
license = LGPL3+
license_files =
COPYING
COPYING.LESSER
LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Programming Language :: Python :: 3
[options]
python_requires = >=3.7
packages =
dali
dali.device
dali.driver
dali.gear
dali.memory
dali.tests
[options.extras_require]
driver-unipi =
pyusb
pymodbus
driver-serial = pyserial-asyncio
test =
pytest
pytest-asyncio
pyserial-asyncio
[flake8]
exclude = */driver/
ignore = E741, F403, F405, W503
# Please write with max-line-length = 80 where possible
max-line-length = 103