-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
49 lines (46 loc) · 1.75 KB
/
setup.py
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
from setuptools import setup
from rpi_backlight import __version__
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="rpi-backlight",
version=__version__,
description="A Python module for controlling power and brightness "
'of the official Raspberry Pi 7" touch display.',
long_description=long_description,
long_description_content_type="text/markdown",
author="Linus Groh",
license="MIT",
author_email="mail@linusgroh.de",
url="https://github.com/linusg/rpi-backlight",
download_url="https://pypi.org/project/rpi-backlight",
keywords=["raspberry pi", "display", "touchscreen", "brightness", "backlight"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: System",
"Topic :: System :: Hardware",
"Topic :: Multimedia",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=["rpi_backlight"],
entry_points={
"console_scripts": [
"rpi-backlight = rpi_backlight.cli:main",
"rpi-backlight-gui = rpi_backlight.gui:main",
]
},
)