-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix storey distribution - don't include
tests
/integration
in pack…
…ages (#534) * Remove an unused Dockerfile * Update package Python support * Update .gitignore * Change template to .gitignore * Remove `.dockerignore` - no Docker in storey * Add egg-info to .gitignore * Add Lua comment on lupa * Add a small type hint * Add dist to .gitignore * Add .DS_Store to .gitignore A Mac generated file * Remove .dockerignore from MANIFEST.in file * Include only storey package in the distribution * Add __pycache__/ to gitignore * Fix sub-packages discovery * Add .python-version global file For pyenv/uv * Update .gitignore * Revert "Add .python-version global file" This reverts commit 6ad0cee. * Add `docs/_build/` and vscode to .gitignore
- Loading branch information
Showing
7 changed files
with
36 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
*.egg-info/ | ||
dist/ | ||
|
||
venv/ | ||
|
||
*.coverage | ||
coverage_reports/ | ||
|
||
.python-version | ||
|
||
docs/_build/ | ||
|
||
test.db | ||
bench-results.json | ||
|
||
.idea | ||
|
||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
*.code-workspace | ||
|
||
.DS_Store |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
include .dockerignore | ||
include LICENSE | ||
include README.md | ||
include requirements.txt dev-requirements.txt | ||
|
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
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