-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (31 loc) · 1.24 KB
/
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
30
31
32
from setuptools import setup, find_packages
setup(
name='bdpn',
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
version='0.1.14',
description='Estimation of BDPN parameters from phylogenetic trees.',
author='Anna Zhukova',
author_email='anna.zhukova@pasteur.fr',
url='https://github.com/evolbioinfo/bdpn',
keywords=['phylogenetics', 'birth-death model', 'partner notification'],
install_requires=['six', 'ete3', 'numpy', "scipy==1.10.0-rc1", 'biopython'],
entry_points={
'console_scripts': [
'bdpn_infer = bdpn.bdpn_model:main',
'bd_infer = bdpn.bd_model:main',
'bdpn_loglikelihood = bdpn.bdpn_model:loglikelihood_main',
'bd_loglikelihood = bdpn.bd_model:loglikelihood_main',
'pn_test = bdpn.model_distinguisher:main',
]
},
)