diff --git a/Makefile b/Makefile index dd0da23..1ee8c63 100644 --- a/Makefile +++ b/Makefile @@ -154,6 +154,7 @@ install-test: install-dev-deps dev list-packaged: build tar -tf $(shell ls -1 dist/*.tar.gz | sort -V | tail -n 1) + unzip -l dist/python_newtype-0.1.*-*.whl # Version verification check-version: diff --git a/pyproject.toml b/pyproject.toml index 1a62c65..3300418 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry_dynamic_versioning.backend" [tool.poetry] name = "python-newtype" -version = "0.1.4" +version = "0.1.5" homepage = "https://github.com/jymchng/python-newtype-dev" repository = "https://github.com/jymchng/python-newtype-dev" license = "MIT" @@ -16,6 +16,9 @@ readme = "README.md" packages = [{ include = "newtype" }] include = [ { path = "newtype/*.so" }, + { path = "newtype/*.pyd" }, + { path = "newtype/extensions/*.so" }, + { path = "newtype/extensions/*.pyd" }, { path = "newtype/*" }, { path = "newtype/extensions/**" }, # need to include this for the packager to include it in the distribution ]