quick code test

This commit is contained in:
shrkey
2016-10-04 21:58:07 +01:00
parent bca4e41e13
commit fd9c62fc6a
8 changed files with 28 additions and 0 deletions

15
MANIFEST Normal file
View File

@@ -0,0 +1,15 @@
# file GENERATED by distutils, do NOT edit
setup.py
darkwater_640\GPIO.py
darkwater_640\I2C.py
darkwater_640\PCA9685.py
darkwater_640\Platform.py
darkwater_640\SPI.py
darkwater_640\__init__.py
darkwater_640\darkwater_640.py
darkwater_640\mpu9250.py
darkwater_640\smbus.py
examples\640imutest.py
examples\640motortest.py
examples\640servotest.py
examples\640steppertest.py

1
MANIFEST.in Normal file
View File

@@ -0,0 +1 @@
recursive-include examples *

View File

@@ -1 +1,2 @@
from .darkwater_640 import dw_Motor, dw_Servo, dw_Stepper, dw_Controller
from .mpu9250 import MPU9250

11
setup.py Normal file
View File

@@ -0,0 +1,11 @@
from distutils.core import setup
setup(name = 'darkwater_640',
version = '1.0.0',
author = 'Team Dark Water',
author_email = 'team@darkwater.io',
description = 'Library for Dark Water 640 board',
license = 'MIT',
url = 'https://github.com/darkwaterfoundation/darkwater_python_640',
packages = ['darkwater_640']
)