File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ if [ -d ".venv" ]; then
1818 fi
1919fi
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
2525source ./.venv/bin/activate
2626
Original file line number Diff line number Diff 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" ],
You can’t perform that action at this time.
0 commit comments