From 79115340ad628e9b4b9b5b66cd02f23a2a9c2abb Mon Sep 17 00:00:00 2001 From: Hans Date: Wed, 19 Jan 2022 15:57:54 +0100 Subject: [PATCH] bump a new version for pip release --- setup.cfg | 3 +++ setup.py | 24 +++++++++++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..ad229d3 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +# Inside of setup.cfg +[metadata] +description-file = README diff --git a/setup.py b/setup.py index d7aa0f8..540f04f 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,34 @@ from setuptools import setup +import os - +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() +install_requires = ['pysam'] +long_description = read('README.md') setup( name = "mVIRs", version = "1.1.0", author = "Hans-Joachim Ruscheweyh", author_email = "hansr@ethz.ch", - description = ("Bioinformatic toolkit for finding prophages in sequencing data"), + description = ("mVIRs: Localisation of inducible prophages using NGS data"), license = "GPLv3", + include_package_data=True, + install_requires=install_requires, + long_description=long_description, + long_description_content_type='text/markdown', keywords = "bioinformatics metagenomics NGS alignment OPRs Prophages", - url = "https://github.com/SushiLab/mVIRs", + url = "https://github.com/SushiLab/mVIRss", packages=['mVIRs'], + download_url = "https://github.com/SushiLab/mVIRs/archive/refs/tags/1.1.1.tar.gz", + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Science/Research', + 'Topic :: Scientific/Engineering :: Bio-Informatics', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Operating System :: OS Independent', + ], entry_points = { 'console_scripts': ['mvirs=mVIRs.mvirs:main'], }