Skip to content

Commit

Permalink
change name in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
omryMen committed Dec 3, 2024
1 parent 5c88ece commit f8fd8d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ jobs:
run: |
python -m pip install wheel
python setup.py sdist bdist_wheel
- name: rename dist files
run: |
for file in dist/*.gz; do mv "$file" "$(echo $file | sed 's/-/_/g')" ; done
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2
- name: sleep and wait for package to refresh
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_version():


setup(
name='bc_detect_secrets',
name='bc-detect-secrets',
python_requires='>=3.8',
packages=find_packages(exclude=(['test*', 'tmp*'])),
version=VERSION,
Expand Down

0 comments on commit f8fd8d2

Please sign in to comment.