-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Liam Childs
committed
Sep 19, 2016
1 parent
3da8b23
commit 7007826
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include *.txt | ||
recursive-include docs *.txt |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'] | ||
) |