Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ script:
- python hostlist/unittest_hostlist.py
- coverage run hostlist/unittest_hostlist.py
- python setup.py sdist bdist_wheel
- pip install dist/py_hostlist-0.0.1.dev0-py2.py3-none-any.whl
- pip install dist/*.whl
- hostlist -h
after_success:
- codecov
4 changes: 3 additions & 1 deletion hostlist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
.. moduleauthor:: Christopher Moussa <[email protected]>

"""
name = "py-hostlist"
from .hostlist import *

name = "py-hostlist"
2 changes: 1 addition & 1 deletion hostlist/cla_hostlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def msg(name=None):
Description: cla_hostlist processes slurm-style hostlist strings and
can return those strings in manipulated fashion.

Usage: python cla_hostlist.py [OPTION]... [HOSTLIST]...
Usage: hostlist [OPTION]... [HOSTLIST]...

-h, --help Display this message.
-q, --quiet Quiet output (exit non-zero if empty hostlist)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="py-hostlist",
version="0.0.1-dev",
version="0.1.0",
author="Christopher Moussa",
author_email="[email protected]",
description="A slurm-style hostlist processor.",
Expand Down