Skip to content

Commit 2039310

Browse files
committed
PyPi bugs fixed
1 parent 3de25a1 commit 2039310

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

djitellopy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from djitellopy.tello import Tello
1+
from djitellopy.tello import Tello

djitellopy/tello.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import threading
55
import cv2
66
from threading import Thread
7+
from djitellopy.decorators import accepts
78

89

910
class Tello:

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
setup(
44
name='djitellopy', # How you named your package folder (MyLib)
55
packages=['djitellopy'], # Chose the same as "name"
6-
version='1.2', # Start with a small number and increase it with every change you make
6+
version='1.3', # Start with a small number and increase it with every change you make
77
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
88
description='DJI Tello drone python interface using the official Tello SDK including the video stream.',
99
# Give a short description about your library
1010
author='Damià Fuentes Escoté', # Type in your name
1111
author_email='[email protected]', # Type in your E-Mail
1212
url='https://github.com/damiafuentes', # Provide either the link to your github or to your website
13-
download_url='https://github.com/damiafuentes/TelloSDKPy/archive/v_1.2.tar.gz', # I explain this later on
13+
download_url='https://github.com/damiafuentes/TelloSDKPy/archive/v_1.3.tar.gz', # I explain this later on
1414
keywords=['tello', 'dji', 'drone', 'sdk', 'official sdk'], # Keywords that define your package best
1515
install_requires=[ # I get to this in a second
1616
'numpy',

0 commit comments

Comments
 (0)