-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
480ea92
commit 7911534
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Inside of setup.cfg | ||
[metadata] | ||
description-file = README |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'], | ||
} | ||
|