forked from njouanin/hbmqtt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include all files in the PyPI releases
- Included tests, examples, etc in MANIFEST.in. - Made git ignore files that should not be included in the package. - Added tox test environment which runs check-manifest to validate the MANIFEST.in file. Downstreams like Debian prefer the PyPI packages to include everything from the Git repo, especially changelogs and test suites. To make the installation with pip as lightweight as possible, it is encouraged to build and upload Python wheels in addition to the sdist tarball.
- Loading branch information
Showing
3 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
hbmqtt/__pycache__ | ||
*.egg-info | ||
*.pyc | ||
|
||
.idea/hbmqtt.iml | ||
.tox/ | ||
__pycache__ | ||
build/ | ||
dist/ | ||
tests/plugins/test.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
recursive-include scripts *.yaml | ||
include *.rst | ||
include *.txt | ||
include license.txt | ||
include samples/passwd | ||
include tests/plugins/passwd | ||
include tox.ini | ||
|
||
recursive-include docs *.css | ||
recursive-include docs *.html | ||
recursive-include docs *.py | ||
recursive-include docs *.rst | ||
recursive-include docs Makefile | ||
recursive-include samples *.crt | ||
recursive-include samples *.py | ||
recursive-include scripts *.yaml | ||
recursive-include tests *.crt | ||
recursive-include tests *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters