-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
44 lines (35 loc) · 1.44 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="RPi.GPIO2",
version="0.4.0",
author="Joel Savitz",
author_email="joelsavitz@gmail.com",
description="Compatibility layer between RPi.GPIO syntax and libgpiod semantics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/underground-software/RPi.GPIO2",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Home Automation",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Hardware",
],
keywords="Raspberry Pi GPIO libgpiod RPi.GPIO",
python_requires=">=3.7",
project_urls={
"Source": "https://github.com/underground-software/RPi.GPIO2",
"Bug Reports": "https://github.com/underground-software/RPi.GPIO2/issues",
},
)