mirror of
https://github.com/damiafuentes/DJITelloPy.git
synced 2024-10-25 03:27:46 +03:00
bump to 2.3.1 which will be available in the original pypi package
This commit is contained in:
10
README.md
10
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
|
||||
|
||||
@@ -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
setup.py
8
setup.py
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user