forked from LedFx/LedFx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (49 loc) · 935 Bytes
/
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
[metadata]
description = A network based light effect controller
long_description = file: README.rst
long_description_content_type = text/x-rst
platforms = any
classifiers =
Development Status :: 2 - Pre-Alpha
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Natural Language :: English
[options]
packages = find:
include_package_data = true
zip_safe = false
[options.packages.find]
exclude =
tests
tests.*
[tox:tox]
requires = tox-venv
setuptools >= 40.8.0
wheel
[test]
addopts = tests
[tool:pytest]
testpaths = tests
norecursedirs =
dist
build
.tox
[build_sphinx]
source_dir = docs/source
build_dir = docs/build
[flake8]
max-line-length = 79
extend-ignore = E203, W503
ignore =
E501,
F601,
F811,
F841
exclude =
.tox
build
dist
.eggs
docs/conf.py
node_modules