Skip to content

Commit

Permalink
fixed various build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Childs committed Sep 15, 2016
1 parent 560e23a commit 9286fa7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 102 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[run]
omit = examples/*
92 changes: 2 additions & 90 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,91 +1,3 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.pyc
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

.idea
.idea
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
mimo
====

+ Multiple input and multiple output (as opposed to functions where inputs and outputs are always synchronised)
* Less memory (because of streaming)

MiMo is a multi-input multi-output Python streaming library. It allows users to define a stream with multiple inputs and multiple outputs and run them completely from beginning to end. Back-pressure has also been implemented to prevent too much memory from being used.

Usage
Expand Down
9 changes: 0 additions & 9 deletions mimo/stream/converter_stream.py

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
version='1.0.0',
author='Liam H. Childs',
author_email='[email protected]',
packages=find_packages(exclude=['test']),
packages=find_packages(exclude=['tests']),
url='https://github.com/childsish/mimo',
license='LICENSE.txt',
description='A Python multi-input, multi-output streaming library',
description='A streaming multi-input, multi-output Python library',
long_description=long_description,
install_requires=['lhc-python']
)
1 change: 0 additions & 1 deletion tests/test_connection/test_output.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest

from mimo import Stream
from mimo.connection.output import Output


Expand Down

0 comments on commit 9286fa7

Please sign in to comment.