diff --git a/djitellopy/__init__.py b/djitellopy/__init__.py index c3c3f72..6b03c33 100644 --- a/djitellopy/__init__.py +++ b/djitellopy/__init__.py @@ -1 +1 @@ -from djitellopy.tello import Tello \ No newline at end of file +from djitellopy.tello import Tello diff --git a/djitellopy/tello.py b/djitellopy/tello.py index f9b42c0..847ac29 100644 --- a/djitellopy/tello.py +++ b/djitellopy/tello.py @@ -4,6 +4,7 @@ import threading import cv2 from threading import Thread +from djitellopy.decorators import accepts class Tello: diff --git a/setup.py b/setup.py index 6d1c2c4..5e066b7 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ setup( name='djitellopy', # How you named your package folder (MyLib) packages=['djitellopy'], # Chose the same as "name" - version='1.2', # Start with a small number and increase it with every change you make + version='1.3', # Start with a small number and increase it with every change you make license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository description='DJI Tello drone python interface using the official Tello SDK including the video stream.', # Give a short description about your library author='Damià Fuentes Escoté', # Type in your name author_email='damiafuentes@hotmail.com', # Type in your E-Mail url='https://github.com/damiafuentes', # Provide either the link to your github or to your website - download_url='https://github.com/damiafuentes/TelloSDKPy/archive/v_1.2.tar.gz', # I explain this later on + download_url='https://github.com/damiafuentes/TelloSDKPy/archive/v_1.3.tar.gz', # I explain this later on keywords=['tello', 'dji', 'drone', 'sdk', 'official sdk'], # Keywords that define your package best install_requires=[ # I get to this in a second 'numpy',