Permalink
Newer
Older
100644 14 lines (13 sloc) 416 Bytes
Nov 15, 2016 @blazejmarciniak Windows fixes (/n/r), search by frag name, fq file support
1 from setuptools import setup
2
3 setup(name='fatool',
4 version='0.3.1',
5 description='tools for handling fasta files',
6 #url='http://github.com/storborg/funniest',
7 author='Blazej Marciniak',
8 author_email='blazejmarciniak@gmail.com',
9 license='Apache 2.0',
10 packages=['fatool'],
11 install_requires=[
12 ],
13 scripts=['bin/cmdfatool.py'],
Jun 12, 2016 @blazejmarciniak Script changed into python package, tests added.
14 zip_safe=False)