-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.33 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
import os
from setuptools import setup, find_packages
setup(
name='geo_subsampler',
packages=find_packages(),
include_package_data=True,
package_data={'geo_subsampler': [os.path.join('..', 'README.md'), os.path.join('..', 'LICENCE')]},
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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
],
version='0.2',
description='Subsampling of rooted phylogenetic trees using phylogenetic diversity and location proportions.',
author='Anna Zhukova',
author_email='[email protected]',
url='https://github.com/evolbioinfo/geo_subsampler',
keywords=['phylogenetics', 'subsampling', 'phylogenetic diversity', 'phylogeography'],
requires=['pandas', 'numpy', 'ete3'],
install_requires=['pandas', 'numpy', 'ete3'],
entry_points={
'console_scripts': [
'geo_subsample = geo_subsampler.phylogenetic_diversity:main',
]
},
)