Skip to content

Commit

Permalink
added MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Childs committed Sep 19, 2016
1 parent 3da8b23 commit 7007826
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include *.txt
recursive-include docs *.txt
Binary file added dist/mimo-1.0.3.zip
Binary file not shown.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@

from setuptools import setup, find_packages

long_description = open('README.rst').read() if os.path.exists('README.rst') else\
open('README.md').read()
with open('README.rst', encoding='utf-8') if os.path.exists('README.rst') else \
open('README.md', encoding='utf-8') as fileobj:
long_description = fileobj.read()

setup(
name='mimo',
version='1.0.1',
author='Liam H. Childs',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
url='https://github.com/childsish/mimo',
license='LICENSE.txt',
description='A streaming multi-input, multi-output Python library',
long_description=long_description,
install_requires=['lhc-python']
install_requires=['lhc-python'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics']
)

0 comments on commit 7007826

Please sign in to comment.