Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the MANIFEST.in file #240

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ jobs:
run: |
ruff check --output-format=github .
ruff format --check

- name: Check manifest
run: |
check-manifest
20 changes: 16 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
exclude powa/templates/
# Exclude all dot files and dot directories
exclude .*
recursive-exclude .* *

exclude vite.config.js
exclude *.json

recursive-exclude powa/static/js *
pgiraud marked this conversation as resolved.
Show resolved Hide resolved
recursive-exclude powa/static/styles *
recursive-include powa/templates *.html
recursive-include powa/static/css *
recursive-include powa/static/img *
include powa/static/js/powa.min-all.js
include powa/static/js/config.js
include powa/static/js/require.js
recursive-include powa/static/dist *
include powa/powa.wsgi
include powa-web.conf-dist
include run_powa.py

include *.md
include *.txt
include CHANGELOG
include readme
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-r requirements.txt
ruff --only-binary=ruff
check-manifest