Skip to content

Commit

Permalink
PyPi bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
damiafuentes committed Nov 18, 2018
1 parent 3de25a1 commit 2039310
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion djitellopy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from djitellopy.tello import Tello
from djitellopy.tello import Tello
1 change: 1 addition & 0 deletions djitellopy/tello.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import threading
import cv2
from threading import Thread
from djitellopy.decorators import accepts


class Tello:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2039310

Please sign in to comment.