-
Notifications
You must be signed in to change notification settings - Fork 179
/
setup.py
42 lines (39 loc) · 1.24 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='rpi-rf',
version='0.9.7',
author='Micha LaQua',
description='Sending and receiving 433/315MHz signals with low-cost GPIO RF modules on a Raspberry Pi',
long_description=long_description,
url='https://github.com/milaq/rpi-rf',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=[
'rpi',
'raspberry',
'raspberry pi',
'rf',
'gpio',
'radio',
'433',
'433mhz',
'315',
'315mhz'
],
install_requires=['RPi.GPIO'],
scripts=['scripts/rpi-rf_send', 'scripts/rpi-rf_receive'],
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
)