Mercurial > repos > dereeper > ragoo
diff RaGOO/setup.py @ 13:b9a3aeb162ab draft default tip
Uploaded
author | dereeper |
---|---|
date | Mon, 26 Jul 2021 18:22:37 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RaGOO/setup.py Mon Jul 26 18:22:37 2021 +0000 @@ -0,0 +1,21 @@ +#!/usr/bin/env python +from setuptools import setup +import glob + +scripts = glob.glob("*.p*") + +setup( + name='RaGOO', + version='v1.1', + description='A tool to order and orient genome assembly contigs via minimap2 alignments to a reference genome.', + author='Michael Alonge', + author_email='malonge11@gmail.com', + packages=['ragoo_utilities'], + package_dir={'ragoo_utilities': 'ragoo_utilities/'}, + install_requires=[ + 'intervaltree', + 'numpy', + ], + scripts=scripts, + zip_safe=True +)