Mercurial > repos > jpayne > seqsero_v2
comparison SeqSero2/setup.py @ 4:b82e5f3c9187
planemo upload
author | jpayne |
---|---|
date | Thu, 18 Apr 2019 15:18:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3:b18e8cdfdf81 | 4:b82e5f3c9187 |
---|---|
1 | |
2 from distutils.core import setup | |
3 | |
4 setup( | |
5 name = "seqsero2", | |
6 version = "2.0", | |
7 author = "DengLab", | |
8 author_email = "seqsero@gmail.com", | |
9 description = ("Serotyping for Salmonella."), | |
10 license = "GPL-2.0", | |
11 keywords = "salmonella", | |
12 url = "https://github.com/CFSAN-Biostatistics/SeqSero2", | |
13 packages=['seqsero2'], | |
14 scripts=['scripts/SeqSero2.py'], | |
15 entry_points={ | |
16 'console_scripts': ['SeqSero2 = seqsero2.SeqSero2:main'] | |
17 }, | |
18 package_dir = {'seqsero': 'scripts'} | |
19 ) |