Skip to content

Commit

Permalink
Move scripts module into hbmqtt module
Browse files Browse the repository at this point in the history
Fixes #166
  • Loading branch information
jodal authored and FlorianLudwig committed Mar 13, 2021
1 parent a19f37d commit b857744
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ recursive-include docs *.html
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs Makefile
recursive-include hbmqtt/scripts *.py
recursive-include hbmqtt/scripts *.yaml
recursive-include samples *.crt
recursive-include samples *.py
recursive-include scripts *.yaml
recursive-include tests *.crt
recursive-include tests *.py
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
'packet_logger_plugin = hbmqtt.plugins.logging:PacketLoggerPlugin',
],
'console_scripts': [
'hbmqtt = scripts.broker_script:main',
'hbmqtt_pub = scripts.pub_script:main',
'hbmqtt_sub = scripts.sub_script:main',
'hbmqtt = hbmqtt.scripts.broker_script:main',
'hbmqtt_pub = hbmqtt.scripts.pub_script:main',
'hbmqtt_sub = hbmqtt.scripts.sub_script:main',
]
}
)

0 comments on commit b857744

Please sign in to comment.