Mercurial > repos > dereeper > ragoo
annotate RaGOO/setup.py @ 13:b9a3aeb162ab draft default tip
Uploaded
| author | dereeper |
|---|---|
| date | Mon, 26 Jul 2021 18:22:37 +0000 |
| parents | |
| children |
| rev | line source |
|---|---|
| 13 | 1 #!/usr/bin/env python |
| 2 from setuptools import setup | |
| 3 import glob | |
| 4 | |
| 5 scripts = glob.glob("*.p*") | |
| 6 | |
| 7 setup( | |
| 8 name='RaGOO', | |
| 9 version='v1.1', | |
| 10 description='A tool to order and orient genome assembly contigs via minimap2 alignments to a reference genome.', | |
| 11 author='Michael Alonge', | |
| 12 author_email='malonge11@gmail.com', | |
| 13 packages=['ragoo_utilities'], | |
| 14 package_dir={'ragoo_utilities': 'ragoo_utilities/'}, | |
| 15 install_requires=[ | |
| 16 'intervaltree', | |
| 17 'numpy', | |
| 18 ], | |
| 19 scripts=scripts, | |
| 20 zip_safe=True | |
| 21 ) |
