-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.12 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
"""
Setup file for easy installation of gpiocmd.
"""
from setuptools import setup
setup(
name = 'gpiocmd',
version = '0.9.0',
description = 'Run arbitrary commands when GPIO buttons are pressed on Raspberry PI.',
url = 'https://github.com/aheimsbakk/gpiocmd',
author = 'Arnulf Heimsbakk',
author_email = '[email protected]',
license = 'BSD 3-Clause License',
scripts = ['scripts/gpiocmd'],
data_files = [('share/doc/gpiocmd/examples', ['examples/gpiocmd-config-adafruit.yml']),
('share/doc/gpiocmd/examples', ['examples/gpiocmd-config-example.yml']),
('share/doc/gpiocmd', ['README.md']),
],
install_requires=['pyyaml~=5.4',
'RPi.GPIO~=0.7',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License'
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Programming Language :: Python :: 3',
],
)