annotate SeqSero2/setup.py @ 17:03f7b358d57f

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