-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (29 loc) · 980 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/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__))
def readme(file):
with open(path.join(here, 'README.md')) as fh:
long_description_text = fh.read()
return(long_description_text)
setup(
name = 'stringMLST',
scripts = ['stringMLST.py'],
version = "0.6.1",
description = 'Fast k-mer based tool for alignment and assembly-free multi locus sequence typing (MLST) directly from genome sequencing reads.',
long_description=readme('README.md'),
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'],
)