Skip to content

Commit

Permalink
Fix URL's, update copyright year and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rtijn committed Nov 26, 2021
1 parent d0f3fa0 commit e5d4162
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
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 (martijn@mrtijn.nl) 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
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 (martijn@mrtijn.nl) and contributors
Licensed under the MIT License. For more information, see ``LICENSE``.
9 changes: 6 additions & 3 deletions mpu6050/mpu6050.py
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 (martijn@mrtijn.nl) and contributers
https://github.com/m-rtijn/mpu6050
"""

import smbus
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -15,9 +15,9 @@ def readme():
'Operating System :: POSIX :: Linux',
],
keywords='mpu6050 raspberry',
url='https://github.com/Tijndagamer/mpu6050',
author='Martijn (MrTijn)',
author_email='mrtijn@riseup.net',
url='https://github.com/m-rtijn/mpu6050',
author='Martijn',
author_email='martijn@mrtijn.nl',
license='MIT',
packages=['mpu6050'],
scripts=['bin/mpu6050-example'],
Expand Down

0 comments on commit e5d4162

Please sign in to comment.