Skip to content

Commit 0985ae6

Browse files
jontsaiclaude
andcommitted
Fix PyPI package name to use underscores instead of hyphens
Changed package name from 'altimate-datapilot-cli' to 'altimate_datapilot_cli' in setup.py to comply with PyPI's filename requirements. PyPI requires distribution filenames to use underscores, not hyphens. This fixes the 400 Bad Request error during package upload: 'Filename altimate-datapilot-cli-0.1.1.tar.gz is invalid, should be altimate_datapilot_cli-0.1.1.tar.gz.' Note: Users can still install using either 'pip install altimate-datapilot-cli' or 'pip install altimate_datapilot_cli' as PyPI normalizes package names. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 54836e1 commit 0985ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def read(*names, **kwargs):
1212

1313

1414
setup(
15-
name="altimate-datapilot-cli",
15+
name="altimate_datapilot_cli",
1616
version="0.1.1",
1717
license="MIT",
1818
description="Assistant for Data Teams",

0 commit comments

Comments
 (0)