bump to 2.3.1 which will be available in the original pypi package

This commit is contained in:
Jakob Löw
2021-06-06 23:45:22 +02:00
parent c67fe583de
commit cdac2cc730
3 changed files with 11 additions and 11 deletions

View File

@@ -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

View File

@@ -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
```

View File

@@ -8,17 +8,17 @@ repo_code_url = "https://github.com/damiafuentes/DJITelloPy/tree/master"
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',