Skip to content

Commit e5d4162

Browse files
committed
Fix URL's, update copyright year and bump version
1 parent d0f3fa0 commit e5d4162

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015, 2016, 2017, 2018 Martijn (MrTijn) and contributors
3+
Copyright (c) 2015, 2016, 2017, 2018, 2021 Martijn (martijn@mrtijn.nl) and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,21 @@ Or:
4444
2b. Clone the repository and run setup.py
4545
::
4646
47-
git clone https://github.com/Tijndagamer/mpu6050.git
47+
git clone https://github.com/m-rtijn/mpu6050.git
4848
python setup.py install
4949

5050
Issues & Bugs
5151
-------------
5252

5353
Please report any issues or bugs here:
5454

55-
https://github.com/Tijndagamer/mpu6050/issues
55+
https://github.com/m-rtijn/mpu6050/issues
5656

5757

5858
License
5959
-------
6060

6161
::
6262

63-
Copyright (c) 2015, 2016, 2017, 2018 Martijn (MrTijn) and contributors
63+
Copyright (c) 2015, 2016, 2017, 2018, 2021 Martijn (martijn@mrtijn.nl) and contributors
6464
Licensed under the MIT License. For more information, see ``LICENSE``.

mpu6050/mpu6050.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
"""This program handles the communication over I2C
1+
"""
2+
This program handles the communication over I2C
23
between a Raspberry Pi and a MPU-6050 Gyroscope / Accelerometer combo.
3-
Made by: MrTijn/Tijndagamer
4+
45
Released under the MIT License
5-
Copyright (c) 2015, 2016, 2017 MrTijn/Tijndagamer
6+
Copyright (c) 2015, 2016, 2017, 2021 Martijn (martijn@mrtijn.nl) and contributers
7+
8+
https://github.com/m-rtijn/mpu6050
69
"""
710

811
import smbus

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def readme():
55
return f.read()
66

77
setup(name='mpu6050-raspberrypi',
8-
version='1.1',
8+
version='1.2',
99
description='A Python module for accessing the MPU-6050 digital accelerometer and gyroscope on a Raspberry Pi.',
1010
classifiers=[
1111
'License :: OSI Approved :: MIT License',
@@ -15,9 +15,9 @@ def readme():
1515
'Operating System :: POSIX :: Linux',
1616
],
1717
keywords='mpu6050 raspberry',
18-
url='https://github.com/Tijndagamer/mpu6050',
19-
author='Martijn (MrTijn)',
20-
author_email='mrtijn@riseup.net',
18+
url='https://github.com/m-rtijn/mpu6050',
19+
author='Martijn',
20+
author_email='martijn@mrtijn.nl',
2121
license='MIT',
2222
packages=['mpu6050'],
2323
scripts=['bin/mpu6050-example'],

0 commit comments

Comments
 (0)