From cdac2cc730535a7142c8d32628a2dba49a682a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20L=C3=B6w?= Date: Sun, 6 Jun 2021 23:45:22 +0200 Subject: [PATCH] bump to 2.3.1 which will be available in the original pypi package --- README.md | 10 +++++----- docs/index.md | 4 ++-- setup.py | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b06a88e..221bb51 100644 --- a/README.md +++ b/README.md @@ -11,21 +11,21 @@ Feel free to contribute! ## Install using pip ``` -$ pip install djitellopy2 +pip install djitellopy ``` For Linux distributions with both python2 and python3 (e.g. Debian, Ubuntu, ...) you need to run ``` -$ pip3 install djitellopy2 +pip3 install djitellopy ``` ## Install in developer mode Using the commands below you can install the repository in an _editable_ way. This allows you to modify the library and use the modified version as if you had installed it regularly. ``` -$ git clone https://github.com/damiafuentes/DJITelloPy.git -$ cd DJITelloPy -$ pip install -e . +git clone https://github.com/damiafuentes/DJITelloPy.git +cd DJITelloPy +pip install -e . ``` ## Usage diff --git a/docs/index.md b/docs/index.md index acdc99b..59b8c7c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,11 +18,11 @@ Please see the [example directory](https://github.com/damiafuentes/DJITelloPy/tr ## Installation ```bash -pip install https://github.com/damiafuentes/DJITelloPy/archive/master.zip +pip install djitellopy ``` For Linux distributions with both python2 and python3 (e.g. Debian, Ubuntu, ...) you need to run ```bash -pip3 install https://github.com/damiafuentes/DJITelloPy/archive/master.zip +pip3 install djitellopy ``` \ No newline at end of file diff --git a/setup.py b/setup.py index 23b7615..0c4b9d5 100644 --- a/setup.py +++ b/setup.py @@ -8,17 +8,17 @@ long_description = long_description.replace("](examples/", "]({}/examples/".format(repo_code_url)) setuptools.setup( - name='djitellopy2', + name='djitellopy', packages=['djitellopy'], - version='2.3', + version='2.3.1', license='MIT', description='Tello drone library including support for video streaming, swarms, state packets and more', long_description=long_description, long_description_content_type='text/markdown', author='Jakob Löw', - author_email='djitellopy2@m4gnus.de', + author_email='djitellopy@m4gnus.de', url='https://github.com/damiafuentes/DJITelloPy', - download_url='https://github.com/damiafuentes/DJITelloPy/archive/2.1.tar.gz', + download_url='https://github.com/damiafuentes/DJITelloPy/archive/2.3.1.tar.gz', keywords=['tello', 'dji', 'drone', 'sdk', 'official sdk'], install_requires=[ 'numpy',