Skip to content

Commit

Permalink
version bump to 3.0.1 and fix setup.py entry points
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Falk committed Oct 16, 2015
1 parent 5e70b0f commit 942a37b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion blockify/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
except ImportError:
log.error("ImportError: Please install docopt to use the CLI.")

VERSION = "3.0.0"
VERSION = "3.0.1"
CONFIG = None
CONFIG_DIR = os.path.expanduser("~/.config/blockify")
CONFIG_FILE = os.path.join(CONFIG_DIR, "blockify.ini")
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ def read(filename):
install_package_data=True,
entry_points= {
"console_scripts": [
"{0} = {0}.{0}:main".format(_name),
"{0}-dbus = {0}.{0}dbus:main".format(_name),
"{0} = {0}.cli:main".format(_name),
"{0}-dbus = {0}.dbusclient:main".format(_name),
],
"gui_scripts": [
"{0}-ui = {0}.{0}ui:main".format(_name),
"{0}-ui = {0}.gui:main".format(_name),
],
}
)

0 comments on commit 942a37b

Please sign in to comment.