From c01a8a7ac66be3a86c67c9ac6f000ffb8f69e52b Mon Sep 17 00:00:00 2001 From: milnus <44769523+milnus@users.noreply.github.com> Date: Wed, 26 Jan 2022 15:44:39 +1100 Subject: [PATCH] Bump version for new PyPi upload and add keywords and classifiers for PyPi --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4513c01..1371e4f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='Corekaburra', - version='0.0.1', + version='0.0.2', author='Magnus Ganer Jespersen', author_email='magnus.ganer.j@gmail.com', packages=['Corekaburra'], @@ -25,4 +25,11 @@ description=('A prototypical bioinformatics command line tool'), long_description=(LONG_DESCRIPTION), install_requires=["biopython", "networkx", "gffutils", "numpy"], + keywords=['Genomic', 'pan-genome', 'bacteria', 'prokaryotes', 'bioinformatics'], + classifiers=[ + 'Programming Language :: Python :: 3.9', + 'License :: OSI Approved :: MIT License', + 'Intended Audience :: Science/Research', + 'Topic :: Scientific/Engineering :: Bio-Informatics', + 'Development Status :: 4 - Beta'] )