Mercurial > repos > mvdbeek > dedup_hash
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f33e9e6a6c88 |
---|---|
1 try: | |
2 from setuptools import setup | |
3 except ImportError: | |
4 from distutils.core import setup | |
5 | |
6 requirements = ['smhasher'] | |
7 | |
8 ENTRY_POINTS = ''' | |
9 [console_scripts] | |
10 dedup_hash=dedup_hash.dedup_hash:main | |
11 ''' | |
12 | |
13 readme = open('README.rst').read() | |
14 history = open('HISTORY.rst').read().replace('.. :changelog:', '') | |
15 | |
16 setup( | |
17 name='dedup_hash', | |
18 version='0.1.1', | |
19 packages=['dedup_hash'], | |
20 install_requires=requirements, | |
21 long_description=readme + '\n\n' + history, | |
22 entry_points=ENTRY_POINTS, | |
23 keywords='Bioinformatics', | |
24 classifiers=[ | |
25 'Development Status :: 5 - Production/Stable', | |
26 'Intended Audience :: Developers', | |
27 'Environment :: Console', | |
28 'Operating System :: POSIX', | |
29 'Topic :: Scientific/Engineering :: Bio-Informatics', | |
30 'Natural Language :: English', | |
31 "Programming Language :: Python :: 2", | |
32 'Programming Language :: Python :: 2.7', | |
33 ], | |
34 url='https://github.com/mvdbeek/dedup_hash', | |
35 license='MIT', | |
36 author='Marius van den Beek', | |
37 author_email='m.vandenbeek@gmail.com', | |
38 description='Finds and discards exact duplicate reads in fastq files.' | |
39 ) |