Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
cache: pip3
sudo: false

script: python setup.py test

deploy:
provider: pypi
# https://docs.travis-ci.com/user/deployment/pypi
user: david-needs-to-fill-this-in
password:
on:
tags: true
branch: master
1 change: 1 addition & 0 deletions bitio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__author__ = 'charlottegodley'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added bitio/try/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from distutils.core import setup

setup(
name='bitio',
version='0.1',
packages=['bitio', 'bitio.try', 'bitio.microbit', 'bitio.microbit.repl', 'bitio.microbit.serial',
'bitio.microbit.serial.tools', 'bitio.microbit.serial.threaded', 'bitio.microbit.serial.urlhandler',
'bitio.microbit.portscan'],
url='https://github.com/whaleygeek/bitio',
license='',
author='David Whale',
author_email='',
description=''
)