Skip to content

Commit c5c9d75

Browse files
committed
Initial commit.
0 parents  commit c5c9d75

File tree

9 files changed

+105
-0
lines changed

9 files changed

+105
-0
lines changed

Diff for: .gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
terrain
2+
logs
3+
*.bin
4+
*.tlog*
5+
*.tar.gz
6+
*.egg*
7+
*.pyc
8+
build
9+
env

Diff for: .travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
env:
2+
global: []
3+
4+
install:
5+
- 'sudo python setup.py install'
6+
- 'sudo pip install nose'
7+
script:
8+
- 'nosetests tests'
9+
10+
git:
11+
depth: 10
12+
language: objective-c
13+
notifications:
14+
email: false
15+
matrix:
16+
fast_finish: true

Diff for: README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# dronekit-python-solo
2+
3+
[![Windows Build status](https://img.shields.io/appveyor/ci/3drobotics/dronekit-sitl.svg?label=windows)](https://ci.appveyor.com/project/3drobotics/dronekit-sitl/branch/master) [![OS X Build Status](https://img.shields.io/travis/dronekit/dronekit-sitl.svg?label=os%20x)](https://travis-ci.org/dronekit/dronekit-sitl) [![Linux Build Status](https://img.shields.io/circleci/project/dronekit/dronekit-sitl.svg?label=linux)](https://circleci.com/gh/dronekit/dronekit-sitl)
4+
5+
Solo-specific DroneKit functions.
6+
7+
8+
## Installing
9+
10+
Install from Github:
11+
12+
```
13+
pip2 install dronekit-solo -UI
14+
```
15+
16+
17+
## API
18+
19+
```
20+
import dronekit_solo
21+
```
22+
23+
## License
24+
25+
dronekit-solo is licensed as MIT/Apache-2.0

Diff for: appveyor.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
environment:
2+
global: {}
3+
4+
install:
5+
- cmd: 'SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH%'
6+
- cmd: 'python -m pip install pip'
7+
- cmd: 'python setup.py install'
8+
- cmd: 'pip install nose'
9+
10+
build_script:
11+
- cmd: 'nosetests tests'
12+
13+
clone_depth: 10
14+
cache:
15+
- '%CYG_CACHE%'
16+
test: 'off'
17+
branches:
18+
only:
19+
- master

Diff for: circle.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
machine:
2+
environment: {}
3+
dependencies:
4+
pre:
5+
- 'python setup.py install'
6+
- 'pip install nose'
7+
test:
8+
override:
9+
- 'nosetests tests'
10+
general:
11+
build_dir: .

Diff for: dronekit_solo/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/python
2+
3+
from __future__ import print_function
4+
5+
print('todo')

Diff for: scripts/publish-pypi.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
cd $(dirname $0)/..
4+
sudo python setup.py sdist bdist_egg upload

Diff for: setup.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
3+
from setuptools import setup, find_packages
4+
5+
setup(name='dronekit_solo',
6+
version='1.0.0',
7+
description='DroneKit methods for Solo-specific features.',
8+
author='Tim Ryan',
9+
author_email='[email protected]',
10+
url='https://github.com/dronekit/dronekit-solo/',
11+
packages = ['dronekit_solo'],
12+
)

Diff for: tests/test_sitl.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from nose.tools import assert_equals
2+
3+
def test_sitl():
4+
assert True

0 commit comments

Comments
 (0)