Skip to content

Commit eddeb06

Browse files
committed
Merge branch 'release/1.0.12'
2 parents e2fdd3d + d43f37b commit eddeb06

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

LICENSE

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

3-
Copyright (c) 2019 Jeferson Menegazzo
3+
Copyright (c) 2020 Jeferson Menegazzo
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.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,36 @@
11
<div align="center">
22

3+
<a href="https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect">
34
<img
45
src="https://gloimg.gbtcdn.com/soa/gb/2015/201509/goods_img_big-v1/1442961797146-P-3106869.jpg"
56
alt="MPU-9250"
67
height="150"
78
align="center"
89
/>
10+
</a>
911

1012
</div>
1113

1214
<br />
1315

14-
[![GitHub](https://img.shields.io/github/license/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)](LICENSE)
15-
![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
16-
![pypi](https://img.shields.io/pypi/v/pybadges.svg)
17-
![versions](https://img.shields.io/pypi/pyversions/pybadges.svg)
18-
![GitHub issues](https://img.shields.io/github/issues/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
19-
[![PyPI - Downloads](https://img.shields.io/pypi/dm/mpu9250_jmdev)](https://pypi.org/project/mpu9250_jmdev)
16+
<div align="center">
17+
18+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://img.shields.io/badge/Project_Status-Active-green?style=flat-square&color=success)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
19+
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg?style=flat-square&color=success)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
20+
[![GitHub](https://img.shields.io/github/license/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square&color=success)](LICENSE)
21+
![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square)
22+
![pypi](https://img.shields.io/pypi/v/pybadges.svg?style=flat-square)
23+
![versions](https://img.shields.io/pypi/pyversions/pybadges.svg?style=flat-square)
24+
25+
[![GitHub issues](https://img.shields.io/github/issues/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/issues)
26+
[![GitHub forks](https://img.shields.io/github/forks/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/network/members)
27+
[![GitHub stars](https://img.shields.io/github/stars/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/stargazers)
28+
[![GitHub watchers](https://img.shields.io/github/watchers/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/watchers)
29+
[![GitHub contributors](https://img.shields.io/github/contributors/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square&color=success)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/graphs/contributors/)
30+
[![HitCount](http://hits.dwyl.io/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/badges.svg)](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
31+
[![PyPI - Downloads](https://img.shields.io/pypi/dm/mpu9250_jmdev?style=flat-square&color=success)](https://pypi.org/project/mpu9250_jmdev)
32+
33+
</div>
2034

2135
# MPU-9250 (MPU-6500 + AK8963) I2C Driver in Python
2236

@@ -58,7 +72,7 @@ pip install -r requirements.txt
5872
5973
> :warning: If you get zero values and the message **Using Fake SMBus**, the **smbus2** requirement has not been installed correctly. Try installing manually with the command ```pip install -r requirements.txt``` or ```python -mpip install smbus2```.
6074
61-
> :exclamation: Any other problem or questions, **open an issue in this repository, do not send me an e-mail!**
75+
> :exclamation: Any other problem or questions, **open an issue in this repository [clicking here](https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect/issues), do not send me an e-mail!**
6276
6377
## How To Use
6478

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# theme: jekyll-theme-cayman
2-
remote_theme: chrisrhymes/bulma-clean-theme
1+
theme: jekyll-theme-cayman
2+
# remote_theme: chrisrhymes/bulma-clean-theme

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6+
# Remove Emojis
7+
long_description = long_description.replace(":information_source: ", "")
8+
long_description = long_description.replace(":warning: ", "")
9+
long_description = long_description.replace(":exclamation: ", "")
10+
611
setuptools.setup(
712
name="mpu9250_jmdev",
8-
version="1.0.11",
13+
version="1.0.12",
914
author="Jeferson Menegazzo",
1015
author_email="jef.menegazzo@outlook.com",
1116
description="MPU-9250 (MPU-6500 + AK8963) I2C Driver in Python for Raspbery PI",

0 commit comments

Comments
 (0)