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

Change build-system to use setuptools. Fix manifest. #21

Merged
merged 1 commit into from
May 21, 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
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,4 @@ __pycache__
/node_modules
/package-lock.json
/pyvenv.cfg
/src/plone_sphinx_theme/theme/plone-sphinx-theme/static/scripts/
/src/plone_sphinx_theme/theme/plone-sphinx-theme/static/styles/
/styles/Microsoft/
16 changes: 15 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
include *.yaml
graft docs
graft scripts
graft src/plone_sphinx_theme
graft styles/Vocab

include .vale.ini
include .readthedocs.yaml
include CHANGES.md
include Makefile
include package.json
include requirements-docs.txt requirements-initial.txt
include webpack.config.js

prune news
prune styles/Microsoft
global-exclude *.pyc
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ Repository = "https://github.com/plone/plone-sphinx-theme"
Documentation = "https://github.com/plone/plone-sphinx-theme"

[build-system]
requires = ["sphinx-theme-builder >= 0.2.0a14"]
build-backend = "sphinx_theme_builder"
requires = ["setuptools >= 69.5"]
build-backend = "setuptools.build_meta"

[tool.sphinx-theme-builder]
node-version = "16.13.2"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading