Skip to content

Commit

Permalink
bump to 2.3.1 which will be available in the original pypi package
Browse files Browse the repository at this point in the history
  • Loading branch information
M4GNV5 committed Jun 6, 2021
1 parent c67fe58 commit cdac2cc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit cdac2cc

Please sign in to comment.