-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 1.3 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='treesimulator',
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.2.0',
description='Simulation of rooted phylogenetic trees under a given Multitype Birth–Death model.',
author='Anna Zhukova',
author_email='[email protected]',
url='https://github.com/evolbioinfo/treesimulator',
keywords=['phylogenetics', 'tree generator', 'multitype birth-death model'],
install_requires=['six', 'ete3', 'numpy', 'scipy'],
requires=['six', 'ete3', 'numpy', 'scipy'],
entry_points={
'console_scripts': [
'generate_bd = treesimulator.simulate_forest_bd:main',
'generate_bdei = treesimulator.simulate_forest_bdei:main',
'generate_bdss = treesimulator.simulate_forest_bdss:main',
'generate_mtbd = treesimulator.simulate_forest:main',
]
},
)