diff --git a/pyproject.toml b/pyproject.toml index 41296af..084bb13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,3 +71,7 @@ exclude = [ [tool.hatch.build.targets.sdist.force-include] # nb. this is necessary due to git ignoring this file (iiuc) "src/wuttafarm/web/static/css/wuttafarm-buefy.css" = "src/wuttafarm/web/static/css/wuttafarm-buefy.css" + +[tool.hatch.build.targets.wheel.force-include] +# nb. this is necessary due to git ignoring this file (iiuc) +"src/wuttafarm/web/static/css/wuttafarm-buefy.css" = "src/wuttafarm/web/static/css/wuttafarm-buefy.css" diff --git a/tasks.py b/tasks.py index 0643aab..23e4323 100644 --- a/tasks.py +++ b/tasks.py @@ -25,7 +25,7 @@ def release(c, skip_tests=False): # custom styles for buefy update_style(c) - c.run("python -m build --sdist") + c.run("python -m build") c.run("twine upload dist/*")