Skip to content

Commit

Permalink
bump a new version for pip release
Browse files Browse the repository at this point in the history
  • Loading branch information
hjruscheweyh committed Jan 19, 2022
1 parent 480ea92 commit 7911534
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README
24 changes: 21 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]",
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'],
}
Expand Down

0 comments on commit 7911534

Please sign in to comment.