-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
3 changed files
with
36 additions
and
32 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[metadata] | ||
description-file = README.rst | ||
description-file = README.md |
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,26 +1,33 @@ | ||
#!/usr/bin/env python | ||
try: | ||
import os | ||
from setuptools import setup, find_packages | ||
except ImportError: | ||
from distutils.core import setup | ||
from os import path | ||
here = path.abspath(path.dirname(__file__)) | ||
long_description="Fast k-mer based tool for alignment and assembly-free multi locus sequence typing (MLST) directly from genome sequencing reads." | ||
|
||
setup( | ||
name = 'stringMLST', | ||
scripts = ['stringMLST.py'], | ||
version = '0.5.2', | ||
description = 'Fast k-mer based tool for alignment and assembly-free multi locus sequence typing (MLST) directly from genome sequencing reads.', | ||
long_description=long_description, | ||
author = 'Jordan Lab', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/jordanlab/stringMLST', | ||
keywords = ['MLST', 'kmer', "NGS", "stringMSLT"], | ||
classifiers = [ | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
], | ||
install_requires=['lxml','pyfaidx'], | ||
) | ||
#!/usr/bin/env python | ||
try: | ||
import os | ||
from setuptools import setup, find_packages | ||
except ImportError: | ||
from distutils.core import setup | ||
from os import path | ||
here = path.abspath(path.dirname(__file__)) | ||
try: | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
except: | ||
pass | ||
else: | ||
long_description = 'Fast k-mer based tool for alignment and assembly-free multi locus sequence typing (MLST) directly from genome sequencing reads.' | ||
|
||
setup( | ||
name = 'stringMLST', | ||
scripts = ['stringMLST.py'], | ||
version = '0.6', | ||
description = 'Fast k-mer based tool for alignment and assembly-free multi locus sequence typing (MLST) directly from genome sequencing reads.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author = 'Jordan Lab', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/jordanlab/stringMLST', | ||
keywords = ['MLST', 'kmer', "NGS", "stringMSLT"], | ||
classifiers = [ | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
], | ||
install_requires=['lxml','pyfaidx'], | ||
) |
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