annotate setup.py @ 0:18c8b4d6ab1e

Uploaded
author estrain
date Wed, 02 Oct 2019 16:51:30 -0400
parents
children
rev   line source
estrain@0 1 import os, sys
estrain@0 2 from distutils.core import setup
estrain@0 3 from setuptools import find_packages
estrain@0 4
estrain@0 5 def readme():
estrain@0 6 with open('README.md') as f:
estrain@0 7 return f.read()
estrain@0 8
estrain@0 9 setup(name='SeqSero2',
estrain@0 10 version=open("version.py").readlines()[-1].split()[-1].strip("\"'"),
estrain@0 11 description='Salmonella serotyping',
estrain@0 12 long_description=readme(),
estrain@0 13 classifiers=[
estrain@0 14 'Development Status :: 3 - Alpha',
estrain@0 15 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
estrain@0 16 'Programming Language :: Python :: 3',
estrain@0 17 'Topic :: Text Processing :: Linguistic',
estrain@0 18 ],
estrain@0 19 keywords='Salmonella serotyping bioinformatics WGS',
estrain@0 20 url='https://github.com/denglab/SeqSero2/',
estrain@0 21 author='Shaokang Zhang, Hendrik C Den-Bakker and Xiangyu Deng',
estrain@0 22 author_email='zskzsk@uga.edu, Hendrik.DenBakker@uga.edu, xdeng@uga.edu',
estrain@0 23 license='GPLv2',
estrain@0 24 scripts=["bin/deinterleave_fastq.sh","bin/Initial_Conditions.py","bin/SeqSero2_package.py","bin/SeqSero2_update_kmer_database.py"],
estrain@0 25 packages=[""],
estrain@0 26 include_package_data = True,
estrain@0 27 install_requires=['biopython==1.73'],
estrain@0 28 data_files=[("seqsero2_db",["seqsero2_db/antigens.pickle","seqsero2_db/H_and_O_and_specific_genes.fasta","seqsero2_db/invA_mers_dict","seqsero2_db/special.pickle"])],
estrain@0 29 zip_safe=False,
estrain@0 30 )