-
Notifications
You must be signed in to change notification settings - Fork 162
/
setup.cfg
73 lines (67 loc) · 1.94 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
[metadata]
name = luma.oled
version = attr: luma.oled.__version__
description = A small library to drive an OLED device with either SSD1306, SSD1309, SSD1322, SSD1325, SSD1327, SSD1331, SSD1351, SSD1362, SH1106, SH1107 or WS0010 chipset
long_description = file: README.rst, CONTRIBUTING.rst, CHANGES.rst
long_description_content_type = text/x-rst
keywords = raspberry pi, rpi, oled, display, screen, rgb, monochrome, greyscale, color, ssd1306, ssd1309, ssd1322, ssd1325, ssd1327, ssd1331, ssd1351, sh1106, sh1107, ws0010, WEH001602A, WEG010016A, spi, i2c, parallel6800, pcf8574
author = Richard Hull
author_email = [email protected]
url = https://github.com/rm-hull/luma.oled
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Development Status :: 5 - Production/Stable
Intended Audience :: Education
Intended Audience :: Developers
Topic :: Education
Topic :: System :: Hardware
Topic :: System :: Hardware :: Hardware Drivers
Programming Language :: Python :: 3
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]
zip_safe = False
packages = find_namespace:
python_requires = >=3.8, <4
install_requires =
luma.core>=2.4.1
tests_require =
pytest
pytest-cov
pytest-timeout
[options.packages.find]
include = luma*
[options.extras_require]
docs =
sphinx>=1.5.1
sphinx-rtd-theme
qa =
flake8
rstcheck
test =
pytest
pytest-cov
pytest-timeout
[bdist_wheel]
universal = 1
[flake8]
ignore = E127, E128, E241, E402, E501, E731
exclude =
.AppleDouble,
.ropeproject,
.tox,
.eggs,
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
doc,
build,
dist
[aliases]
test=pytest