diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2985d18 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include *.txt +recursive-include docs *.txt diff --git a/dist/mimo-1.0.3.zip b/dist/mimo-1.0.3.zip new file mode 100644 index 0000000..84e5168 Binary files /dev/null and b/dist/mimo-1.0.3.zip differ diff --git a/setup.py b/setup.py index 347914e..42958d5 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ 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='liam.h.childs@gmail.com', packages=find_packages(exclude=['tests']), @@ -15,5 +15,9 @@ 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'] )