Mercurial > repos > jpayne > seqsero_v2
comparison setup.py @ 0:4ff2aee11e5b
planemo upload
author | jpayne |
---|---|
date | Tue, 06 Nov 2018 09:45:57 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4ff2aee11e5b |
---|---|
1 | |
2 from setuptools 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/charesredhat/SeqSero2", | |
13 packages=['seqsero2'], | |
14 scripts=['scripts/SeqSero2.py'], | |
15 entry_points={ | |
16 'console_scripts': ['SeqSero2 = seqsero2.SeqSero2:main'] | |
17 }, | |
18 package_dir = {'seqsero2': 'scripts'} | |
19 ) |