-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
30 lines (27 loc) · 1022 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import setuptools
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.12",
author="Jeferson Menegazzo",
description="MPU-9250 (MPU-6500 + AK8963) I2C Driver in Python for Raspbery PI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Intelligent-Vehicle-Perception/MPU-9250-Sensors-Data-Collect",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: CC BY-NC-ND 4.0 License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"smbus2>=0.3.0",
]
)