-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
17 lines (16 loc) · 899 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup,find_packages
setup(
name='misa', # This is the name of your PyPI-package.
version='1.0.0', # Update the version number for new releases
scripts=['run_misa.py',], # The name of your scipt, and also the command you'll be using for calling it
description='MISA: a mixed samples analysis tool',
long_description='MISA stands for MIxed Sample Analysis tool and addresses the problem of phylogenetic placement of DNA sequences of mixed genomes and hybrids into an\already existing reference tree.',
long_description_content_type='text/plain',
url='https://github.com/balabanmetin/misa',
author='Metin Balaban',
author_email='[email protected]',
packages=find_packages(),
zip_safe = False,
install_requires=['numpy','treeswift','scipy'],
include_package_data=True
)