forked from FaBoPlatform/FaBo9AXIS-MPU9250-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 983 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
import os
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = ''
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: System :: Hardware']
setup(
name = 'FaBo9Axis_MPU9250',
version = '1.0.0',
author = 'FaBo',
author_email = 'info@fabo.io',
description = "This is a library for the FaBo 9AXIS I2C Brick.",
long_description=long_description,
url = 'https://github.com/FaBoPlatform/FaBo9AXIS-MPU9250-Python/',
license = 'Apache License 2.0',
classifiers = classifiers,
packages = find_packages()
)