-
Notifications
You must be signed in to change notification settings - Fork 144
/
setup.py
25 lines (23 loc) · 853 Bytes
/
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='mpu6050-raspberrypi',
version='1.2',
description='A Python module for accessing the MPU-6050 digital accelerometer and gyroscope on a Raspberry Pi.',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
],
keywords='mpu6050 raspberry',
url='https://github.com/m-rtijn/mpu6050',
author='Martijn',
author_email='martijn@mrtijn.nl',
license='MIT',
packages=['mpu6050'],
scripts=['bin/mpu6050-example'],
zip_safe=False,
long_description=readme())