Skip to content

Commit

Permalink
Better version of MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Apr 12, 2017
1 parent 9d86cf2 commit e803b31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
include README.md
recursive-include octoprint_octobullet *
recursive-include octoprint_octobullet/templates *
recursive-include octoprint_octobullet/translations *
recursive-include octoprint_octobullet/static *
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@
### --------------------------------------------------------------------------------------------------------------------

# Additional package data to install for this plugin. The subfolders "templates", "static" and "translations" will
# already be installed automatically if they exist.
# already be installed automatically if they exist. Note that if you add something here you'll also need to update
# MANIFEST.in to match to ensure that python setup.py sdist produces a source distribution that contains all your
# files. This is sadly due to how python's setup.py works, see also http://stackoverflow.com/a/14159430/2028598
plugin_additional_data = []

# Any additional python packages you need to install with your plugin that are not contains in <plugin_package>.*
# Any additional python packages you need to install with your plugin that are not contained in <plugin_package>.*
plugin_addtional_packages = []

# Any python packages within <plugin_package>.* you do NOT want to install with your plugin
Expand Down

0 comments on commit e803b31

Please sign in to comment.