quick code test
This commit is contained in:
15
MANIFEST
Normal file
15
MANIFEST
Normal 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
1
MANIFEST.in
Normal file
@@ -0,0 +1 @@
|
|||||||
|
recursive-include examples *
|
||||||
@@ -1 +1,2 @@
|
|||||||
from .darkwater_640 import dw_Motor, dw_Servo, dw_Stepper, dw_Controller
|
from .darkwater_640 import dw_Motor, dw_Servo, dw_Stepper, dw_Controller
|
||||||
|
from .mpu9250 import MPU9250
|
||||||
|
|||||||
11
setup.py
Normal file
11
setup.py
Normal 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']
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user