Navigation Menu

Skip to content

Commit

Permalink
Fix broken setup
Browse files Browse the repository at this point in the history
Argh...
  • Loading branch information
foosel committed Apr 6, 2018
1 parent a718fe1 commit 2147a3b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions requirements.txt
@@ -1,2 +1,9 @@
OctoPrint
paho-mqtt
###
# This file is only here to make sure that something like
#
# pip install -e .
#
# works as expected. Requirements can be found in setup.py.
###

.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -11,7 +11,7 @@
plugin_name = "OctoPrint-MQTT"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.7"
plugin_version = "0.7.1"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand All @@ -30,7 +30,7 @@
plugin_license = "AGPLv3"

# Any additional requirements besides OctoPrint should be listed here
plugin_requires = ["OctoPrint>=1.3.5"]
plugin_requires = ["OctoPrint>=1.3.5", "paho-mqtt"]

### --------------------------------------------------------------------------------------------------------------------
### More advanced options that you usually shouldn't have to touch follow after this point
Expand Down

0 comments on commit 2147a3b

Please sign in to comment.