From 70715efe59467db432e31c01ab45cf1e1a15aa9b Mon Sep 17 00:00:00 2001 From: Trevor Manz Date: Tue, 19 Sep 2023 09:55:28 -0400 Subject: [PATCH] fix: ensure JS is included in PyPI wheel --- .gitignore | 1 + pyproject.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7621c2a..9e27294 100644 --- a/.gitignore +++ b/.gitignore @@ -8,5 +8,6 @@ demo/ notebooks/mnt/ docs/_build/ dist/ +.venv hg/_version.py diff --git a/pyproject.toml b/pyproject.toml index c007d62..fd29587 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,8 @@ fuse = [ [tool.hatch.build] sources = ["src"] +only-packages = true +artifacts = ["src/higlass/widget.js"] [tool.hatch.version] source = "vcs"