diff --git a/redshirt.py b/redshirt.py index afff45e..1267b31 100644 --- a/redshirt.py +++ b/redshirt.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import logging import os import shutil @@ -10,7 +12,7 @@ import requests from bottle import request, route, run, static_file, template -__version__ = "0.1.0a1" +__version__ = "0.1.0a2" logger = logging.getLogger(__name__) DATA_DIR = os.getenv("TASKDDATA", "/var/lib/taskd") diff --git a/setup.py b/setup.py index 3852d88..af24df5 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name="redshirt", - version="0.1.0a1", + version="0.1.0a2", scripts=['redshirt.py'], author="Jack Laxson", author_email="jack@getpizza.cat",