diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eccfab..7a1f502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Development version +# Version 0.2.0 - 2023-11-23 + * Fix undefined variables introduced due to the migration. * Add tests. * Add type hints, including *mypy*. diff --git a/MANIFEST.in b/MANIFEST.in index 3853325..41bd0c6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,5 @@ recursive-include brother_ql_web/static/css * recursive-include brother_ql_web/static/fonts * recursive-include brother_ql_web/static/js * recursive-include brother_ql_web/views * +recursive-include tests/data * +recursive-exclude venv * diff --git a/setup.py b/setup.py index 62cd2e0..dd2e914 100644 --- a/setup.py +++ b/setup.py @@ -8,13 +8,15 @@ setup( name="brother_ql_web", description="Simple label designer API and web API for Brother QL label printers", - version="0.1.0", + version="0.2.0", license="GPL-3.0-only", long_description=(ROOT_DIRECTORY / "README.md").read_text(encoding="utf-8"), long_description_content_type="text/markdown", author="Philipp Klaus (initial), FriedrichFröbel", url="https://github.com/FriedrichFroebel/brother_ql_web/", - packages=find_namespace_packages(where=".", exclude=["tests", "tests.*"]), + packages=find_namespace_packages( + include=["brother_ql_web", "brother_ql_web.*"] + ), include_package_data=True, python_requires=">=3.8, <4", install_requires=[