-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1.04 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='taxamatcher',
version='1.0',
description='Easy to use taxonomy correlator',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='taxonomy taxon taxa lineage taxonomy-assignment greengenes silva taxonomic-classification bioinformatics metagenomics',
url='https://github.com/mmtechslv/taxamatcher',
author='Farid MUSA',
author_email='[email protected]',
license='Apache',
packages= find_packages(),
install_requires=['click','pandas','numpy'],
scripts=['scripts/taxamatcher'],
zip_safe=False)