-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·19 lines (17 loc) · 967 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Binsanity', # This is the name of your PyPI-package.
version='0.5.4',
description='Method to cluster contigs based a biphasic method with coverage and composition',
url="https://github.com/edgraham/BinSanity",
author="Elaina Graham",
author_email="[email protected]",
license="GPL3",
install_requires=['biopython','pandas>=0.13.0','scipy>=0.13.0','checkm-genome','scikit-learn>=0.23'],
scripts=['utils/identifyHMM','utils/concat','utils/simplify-fasta','utils/get-ids','bin/Binsanity-lc','bin/Binsanity','bin/Binsanity-refine','bin/Binsanity-wf',"bin/Binsanity-profile","utils/transform-coverage-profile","utils/bin_evaluation","utils/checkm_analysis","Binsanity2-Beta/Binsanity2-beta"] ,
)