-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.19 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='living-tree',
version='0.0.6',
packages=['livingTree'],
package_data={'example_tree': ['trees/*.pkl']},
include_package_data=True,
install_requires=['ete3==3.1.1', 'numpy>=1.15.4', 'pandas>=0.23.4', 'treelib==1.5.5'],
url='https://github.com/AdeBC/living-tree-toolkit',
license='MIT',
author='Hui Chong',
author_email='huichong.me@gmail.com',
keywords=['taxonomic tree', 'living tree', 'tree data processing'],
description='An efficient toolkit for constructing and processing taxonomic trees (metagenomic reads count, remapping, etc.).',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
]
)