diff --git a/LICENSE b/LICENSE
index 8f3a16a..1ddecbb 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2019 Jeferson Menegazzo
+Copyright (c) 2020 Jeferson Menegazzo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 2feea06..ce671c6 100644
--- a/README.md
+++ b/README.md
@@ -1,22 +1,36 @@
-[![GitHub](https://img.shields.io/github/license/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)](LICENSE)
-![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
-![pypi](https://img.shields.io/pypi/v/pybadges.svg)
-![versions](https://img.shields.io/pypi/pyversions/pybadges.svg)
-![GitHub issues](https://img.shields.io/github/issues/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect)
-[![PyPI - Downloads](https://img.shields.io/pypi/dm/mpu9250_jmdev)](https://pypi.org/project/mpu9250_jmdev)
+
+
+[![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)
+[![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)
+[![GitHub](https://img.shields.io/github/license/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square&color=success)](LICENSE)
+![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect?style=flat-square)
+![pypi](https://img.shields.io/pypi/v/pybadges.svg?style=flat-square)
+![versions](https://img.shields.io/pypi/pyversions/pybadges.svg?style=flat-square)
+
+[![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)
+[![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)
+[![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)
+[![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)
+[![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/)
+[![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)
+[![PyPI - Downloads](https://img.shields.io/pypi/dm/mpu9250_jmdev?style=flat-square&color=success)](https://pypi.org/project/mpu9250_jmdev)
+
+
# MPU-9250 (MPU-6500 + AK8963) I2C Driver in Python
@@ -58,7 +72,7 @@ pip install -r requirements.txt
> :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```.
-> :exclamation: Any other problem or questions, **open an issue in this repository, do not send me an e-mail!**
+> :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!**
## How To Use
diff --git a/_config.yml b/_config.yml
index 233f5d2..78836f4 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,2 +1,2 @@
-# theme: jekyll-theme-cayman
-remote_theme: chrisrhymes/bulma-clean-theme
+theme: jekyll-theme-cayman
+# remote_theme: chrisrhymes/bulma-clean-theme
diff --git a/setup.py b/setup.py
index 008276b..0f29555 100644
--- a/setup.py
+++ b/setup.py
@@ -3,9 +3,14 @@
with open("README.md", "r") as fh:
long_description = fh.read()
+# Remove Emojis
+long_description = long_description.replace(":information_source: ", "")
+long_description = long_description.replace(":warning: ", "")
+long_description = long_description.replace(":exclamation: ", "")
+
setuptools.setup(
name="mpu9250_jmdev",
- version="1.0.11",
+ version="1.0.12",
author="Jeferson Menegazzo",
author_email="jef.menegazzo@outlook.com",
description="MPU-9250 (MPU-6500 + AK8963) I2C Driver in Python for Raspbery PI",