forked from adafruit/Adafruit_Python_BNO055
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (13 loc) · 744 Bytes
/
setup.py
File metadata and controls
14 lines (13 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name = 'Adafruit_BNO055',
version = '1.0.0',
author = 'Tony DiCola',
author_email = 'tdicola@adafruit.com',
description = 'Library for accessing the Bosch BNO055 absolute orientation sensor on a Raspberry Pi or Beaglebone Black.',
license = 'MIT',
url = 'https://github.com/adafruit/Adafruit_Python_BNO055/',
dependency_links = ['https://github.com/adafruit/Adafruit_Python_GPIO/tarball/master#egg=Adafruit-GPIO-0.9.3'],
install_requires = ['Adafruit-GPIO>=0.9.3', 'pyserial'],
packages = find_packages())