Skip to content

Commit

Permalink
Include sql files for package bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
rbaltrusch committed Jun 22, 2024
1 parent 3b06e09 commit 097ebc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="desktop_shop",
version="1.1.2",
version="1.1.3",
description="Desktop shop application",
long_description=project_dir.joinpath("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
Expand All @@ -19,7 +19,7 @@
package_dir={"": "."},
python_requires=">=3.8",
include_package_data=True,
package_data={"desktop_shop": ["py.typed"]}, # for mypy
package_data={"desktop_shop": ["py.typed", "database/sql/*.sql"]}, # for mypy
# This is a trick to avoid duplicating dependencies between both setup.py and requirements.txt.
# requirements.txt must be included in MANIFEST.in for this to work.
install_requires=project_dir.joinpath("requirements.txt")
Expand Down

0 comments on commit 097ebc5

Please sign in to comment.