comparison setup.py @ 0:6275272ebcbc draft

planemo upload commit 9b152b4a900a8cd70df992da881c7e3fa00d4e4c-dirty
author cstrittmatter
date Thu, 21 Dec 2017 12:45:31 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6275272ebcbc
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 )