From 0cedbd671ed9cddc9cee08103bb678f22fc31963 Mon Sep 17 00:00:00 2001 From: damiafuentes Date: Sun, 18 Nov 2018 14:54:24 -0700 Subject: [PATCH] Added BackgroundFrameRead to PyPi --- djitellopy/__init__.py | 2 +- example.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/djitellopy/__init__.py b/djitellopy/__init__.py index 6b03c33..67d798d 100644 --- a/djitellopy/__init__.py +++ b/djitellopy/__init__.py @@ -1 +1 @@ -from djitellopy.tello import Tello +from djitellopy.tello import Tello, BackgroundFrameRead diff --git a/example.py b/example.py index d03e8ca..1ba45a0 100644 --- a/example.py +++ b/example.py @@ -1,4 +1,4 @@ -from TelloSDKPy.djitellopy import Tello +from djitellopy import Tello import cv2 import pygame from pygame.locals import * diff --git a/setup.py b/setup.py index 5e066b7..c4fafa5 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.3', # Start with a small number and increase it with every change you make + version='1.4', # 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.3.tar.gz', # I explain this later on + download_url='https://github.com/damiafuentes/TelloSDKPy/archive/v_1.4.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',