Skip to content
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
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
]
Expand Down
Loading