-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.53 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
33
34
35
36
37
38
39
import os
from setuptools import setup, find_packages
setup(
name='phylodeep_data_bd',
packages=find_packages(),
include_package_data=True,
package_data={'phylodeep_data_bd': [os.path.join('large', '*.csv.xz'),
os.path.join('small', '*.csv.xz'),
os.path.join('..', 'README.md')]},
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],
version='0.6',
description='Data needed for CI computation with Birth-Death (BD) model in [PhyloDeep](https://github.com/evolbioinfo/phylodeep).',
author='Jakub Voznica',
author_email='[email protected]',
maintainer='Anna Zhukova',
maintainer_email='[email protected]',
url='https://github.com/evolbioinfo/phylodeep_data_bd',
keywords=['phylodeep', 'confidence intervals', 'birth-death'],
python_requires='>=3.8',
install_requires=['pandas>=1.0.0'],
entry_points={
'console_scripts': [
'bd_ci_paths = phylodeep_data_bd:main',
]
},
)