Mercurial > repos > mvdbeek > dedup_hash
diff setup.py @ 0:f33e9e6a6c88 draft default tip
planemo upload for repository https://github.com/mvdbeek/dedup_hash commit 367da560c5924d56c39f91ef9c731e523825424b-dirty
author | mvdbeek |
---|---|
date | Wed, 23 Nov 2016 07:49:05 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Wed Nov 23 07:49:05 2016 -0500 @@ -0,0 +1,39 @@ +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + +requirements = ['smhasher'] + +ENTRY_POINTS = ''' + [console_scripts] + dedup_hash=dedup_hash.dedup_hash:main +''' + +readme = open('README.rst').read() +history = open('HISTORY.rst').read().replace('.. :changelog:', '') + +setup( + name='dedup_hash', + version='0.1.1', + packages=['dedup_hash'], + install_requires=requirements, + long_description=readme + '\n\n' + history, + entry_points=ENTRY_POINTS, + keywords='Bioinformatics', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Environment :: Console', + 'Operating System :: POSIX', + 'Topic :: Scientific/Engineering :: Bio-Informatics', + 'Natural Language :: English', + "Programming Language :: Python :: 2", + 'Programming Language :: Python :: 2.7', + ], + url='https://github.com/mvdbeek/dedup_hash', + license='MIT', + author='Marius van den Beek', + author_email='m.vandenbeek@gmail.com', + description='Finds and discards exact duplicate reads in fastq files.' +)