forked from MarkAHeywood/Bluetin_Python_Echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
name='Bluetin_Echo',
version='0.1.1',
packages = find_packages(),
description='Raspberry Pi Python Library for Ultrasonic Module HC-SR04 Distance Measuring Transducer.',
long_description=open('README.rst').read(),
url='https://github.com/MarkAHeywood/Bluetin_Python_Echo',
author='Mark A Heywood',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Topic :: System :: Hardware',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
keywords=['RPI', 'GPIO', 'Raspberry Pi', 'Ultrasonic', 'HC-SR04', 'Transducer', 'Distance Measuring', 'Sensor'],
install_requires=['RPi.GPIO'],
)