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

Move from explicit includes/excludes list to packages, tweak some com… #29

Merged
merged 1 commit into from
Nov 30, 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
5 changes: 1 addition & 4 deletions js/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check annotate
.PHONY: check-manifest checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v
Expand All @@ -65,9 +65,6 @@ checks: check-manifest
# alias
check: checks

annotate: ## run python type annotation checks with mypy
python -m mypy ./{{module}}

#########
# TESTS #
#########
Expand Down
26 changes: 3 additions & 23 deletions js/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -102,34 +102,14 @@ artifacts = [
src = "/"

[tool.hatch.build.targets.sdist]
include = [
"/{{module}}",
"/js",
"LICENSE",
"README.md",
]
packages = ["{{module}}", "js"]
exclude = [
".copier-answers.yml",
"/.github",
"/.gitattributes",
"/.gitignore",
"/docs",
"/js/dist",
"/js/node_modules",
]

[tool.hatch.build.targets.wheel]
include = [
"/{{module}}",
]
exclude = [
".copier-answers.yml",
"/.github",
"/.gitattributes",
"/.gitignore",
"/pyproject.toml",
"/docs",
"/js/node_modules",
]
packages = ["{{module}}"]

[tool.hatch.build.hooks.jupyter-builder]
build-function = "hatch_jupyter_builder.npm_builder"
Expand Down
5 changes: 1 addition & 4 deletions jupyter/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check annotate
.PHONY: check-manifest checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v
Expand All @@ -65,9 +65,6 @@ checks: check-manifest
# alias
check: checks

annotate: ## run python type annotation checks with mypy
python -m mypy ./{{module}}

#########
# TESTS #
#########
Expand Down
26 changes: 3 additions & 23 deletions jupyter/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -105,34 +105,14 @@ artifacts = [
src = "/"

[tool.hatch.build.targets.sdist]
include = [
"/{{module}}",
"/js",
"LICENSE",
"README.md",
]
packages = ["{{module}}", "js"]
exclude = [
".copier-answers.yml",
"/.github",
"/.gitattributes",
"/.gitignore",
"/js/dist",
"/js/node_modules",
"/docs",
]

[tool.hatch.build.targets.wheel]
include = [
"/{{module}}",
]
exclude = [
".copier-answers.yml",
"/.github",
"/.gitattributes",
"/.gitignore",
"/pyproject.toml",
"/docs",
"/js/node_modules",
]
packages = ["{{module}}"]

[tool.hatch.build.targets.wheel.shared-data]
"{{module}}/labextension" = "share/jupyter/labextensions/{{module}}"
Expand Down
7 changes: 2 additions & 5 deletions python/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ develop: ## install dependencies and build library
python -m pip install -e .[develop]

build: ## build the python library
python setup.py build build_ext --inplace
python -m build -n

install: ## install library
python -m pip install .
Expand All @@ -34,7 +34,7 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check annotate
.PHONY: check-manifest checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v
Expand All @@ -44,9 +44,6 @@ checks: check-manifest
# Alias
check: checks

annotate: ## run python type annotation checks with mypy
python -m mypy ./{{module}}

#########
# TESTS #
#########
Expand Down
25 changes: 2 additions & 23 deletions python/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -88,31 +88,10 @@ artifacts = []
src = "/"

[tool.hatch.build.targets.sdist]
include = [
"/{{module}}",
"LICENSE",
"README.md",
]
exclude = [
".copier-answers.yml",
"/.github",
"/.gitattributes",
"/.gitignore",
"/docs",
]
packages = ["{{module}}"]

[tool.hatch.build.targets.wheel]
include = [
"/{{module}}",
]
exclude = [
".copier-answers.yml",
"/.github",
"/.gitattributes",
"/.gitignore",
"/pyproject.toml",
"/docs",
]
packages = ["{{module}}"]

[tool.hatch.build.targets.wheel.shared-data]

Expand Down
5 changes: 1 addition & 4 deletions rust/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check annotate
.PHONY: check-manifest checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v
Expand All @@ -75,9 +75,6 @@ checks: check-manifest
# alias
check: checks

annotate: ## run python type annotation checks with mypy
python -m mypy ./{{module}}

#########
# TESTS #
#########
Expand Down
Loading