-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix URL's, update copyright year and bump version
- Loading branch information
Showing
4 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015, 2016, 2017, 2018 Martijn (MrTijn) and contributors | ||
Copyright (c) 2015, 2016, 2017, 2018, 2021 Martijn ([email protected]) and contributors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,21 +44,21 @@ Or: | |
2b. Clone the repository and run setup.py | ||
:: | ||
git clone https://github.com/Tijndagamer/mpu6050.git | ||
git clone https://github.com/m-rtijn/mpu6050.git | ||
python setup.py install | ||
|
||
Issues & Bugs | ||
------------- | ||
|
||
Please report any issues or bugs here: | ||
|
||
https://github.com/Tijndagamer/mpu6050/issues | ||
https://github.com/m-rtijn/mpu6050/issues | ||
|
||
|
||
License | ||
------- | ||
|
||
:: | ||
|
||
Copyright (c) 2015, 2016, 2017, 2018 Martijn (MrTijn) and contributors | ||
Copyright (c) 2015, 2016, 2017, 2018, 2021 Martijn ([email protected]) and contributors | ||
Licensed under the MIT License. For more information, see ``LICENSE``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
"""This program handles the communication over I2C | ||
""" | ||
This program handles the communication over I2C | ||
between a Raspberry Pi and a MPU-6050 Gyroscope / Accelerometer combo. | ||
Made by: MrTijn/Tijndagamer | ||
Released under the MIT License | ||
Copyright (c) 2015, 2016, 2017 MrTijn/Tijndagamer | ||
Copyright (c) 2015, 2016, 2017, 2021 Martijn ([email protected]) and contributers | ||
https://github.com/m-rtijn/mpu6050 | ||
""" | ||
|
||
import smbus | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ def readme(): | |
return f.read() | ||
|
||
setup(name='mpu6050-raspberrypi', | ||
version='1.1', | ||
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', | ||
|
@@ -15,9 +15,9 @@ def readme(): | |
'Operating System :: POSIX :: Linux', | ||
], | ||
keywords='mpu6050 raspberry', | ||
url='https://github.com/Tijndagamer/mpu6050', | ||
author='Martijn (MrTijn)', | ||
author_email='[email protected]', | ||
url='https://github.com/m-rtijn/mpu6050', | ||
author='Martijn', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=['mpu6050'], | ||
scripts=['bin/mpu6050-example'], | ||
|