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