-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (27 loc) · 977 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
from distutils.core import setup
setup(
name='snppar',
version='1.0',
author='David Edwards',
author_email='[email protected]',
packages=['snppar'],
scripts=['scripts/snppar.py'],
entry_points={
'console_scripts': ['snppar = snppar:main']
},
package_dir = {'snppar': 'scripts'},
url='https://github.com/d-j-e/SNPPar',
license='LICENSE.txt',
description='Parallel/Homoplasic SNP Finder for Bacteria',
long_description=('This program is designed to take a SNP'
'alignment and a phylogenetic tree in order to'
'find any homoplasic SNPs, and define them if required)'
'By default, reports both the homoplasic events and '
'all mutation events. Also maps the SNPs to the tree.'),
install_requires=[
'biopython>=1.66,<=1.76',
'ete3',
'phylo-treetime>=0.6.3,<=v0.8.6'
],
)