Skip to content

Commit eb9db7d

Browse files
Ensure html templates are included in the package
1 parent e446209 commit eb9db7d

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.envrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ if [ -d ".venv" ]; then
1818
fi
1919
fi
2020

21-
uv venv .venv --python $PYTHON_VERSION
22-
uv pip install -U pip uv
23-
uv pip install -e .
21+
python -m uv venv .venv --python $PYTHON_VERSION
22+
python -m uv pip install -U pip uv
23+
python -m uv pip install -e .
2424

2525
source ./.venv/bin/activate
2626

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ def get_long_description():
4141
long_description=get_long_description(),
4242
long_description_content_type="text/markdown",
4343
packages=find_packages(exclude=["tests"]),
44-
package_data={"cloudsmith_cli": ["cloudsmith_cli/data/*"]},
44+
package_data={
45+
"cloudsmith_cli": ["cloudsmith_cli/data/*", "cloudsmith_cli/templates/*"]
46+
},
4547
include_package_data=True,
4648
zip_safe=False,
4749
platforms=["any"],

0 commit comments

Comments
 (0)