chore: PyPI 배포명을 takopy 로 변경 (tako-shell 등록 거부) - #57
Merged
Conversation
PyPI 가 tako-shell 등록을 거부했다. "이 프로젝트 이름은 기존 프로젝트와
너무 유사합니다."
사전 확인이 부족했다. `GET /pypi/<name>/json` 이 404 를 주는 것은 그 이름이
존재하지 않는다는 뜻일 뿐 등록할 수 있다는 뜻이 아니다. PyPI 는 그 위에
ultranormalization 을 적용해 혼동 가능한 이름을 막는데, 구분자(- _ .)를 아예
제거한 뒤 비교한다:
tako-shell → takoshell 이미 존재 (Pythonic shell, 2020-06)
tako-yaki → takoyaki 이미 존재 (burner mail, 2022-03)
하이픈은 방패가 아니다. 같은 이유로 대체 후보였던 tako-yaki 도 막힌다.
takopy 로 간다 — Python 패키지임을 이름에서 드러낸다. 구분자가 없어
이 함정 자체를 피한다. 실행 명령어는 project.scripts 가 패키지명과 독립이라
tako 그대로다.
검토서에 이 함정을 절로 남겼다. 다음에 이름을 고를 때 같은 데서 막히지
않도록 검증 방법(하이픈 제거 형태가 비어 있는지 확인)까지 적었다.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01FR3Lm3SnJ329MQV4SwTsut
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PyPI 가
tako-shell등록을 거부했다 — "이 프로젝트 이름은 기존 프로젝트와 너무 유사합니다."원인
사전 확인이 부족했다.
GET /pypi/<name>/json이 404 를 주는 것은 그 이름이 존재하지 않는다는 뜻일 뿐, 등록할 수 있다는 뜻이 아니다. PyPI 는 그 위에 ultranormalization 을 적용해 혼동 가능한 이름을 막는다. 구분자(-_.)를 아예 제거한 뒤 비교한다:하이픈은 방패가 아니다. 대체 후보였던
tako-yaki도 같은 이유로 막힌다.변경
takopy로 간다 — Python 패키지임을 이름에서 드러내고, 구분자가 없어 이 함정 자체를 피한다.실행 명령어는
tako그대로다.[project.scripts]가 패키지명과 독립이므로 사용자 경험은 바뀌지 않는다.tako-shelltakopyuv tool install tako-shelluv tool install takopytako newtako new(동일)pyproject.toml·get-tako.sh·README.md·docs/distribution-review.md갱신.검토서에는 이 함정을 별도 절로 남겼다 — 다음에 이름을 고를 때 같은 데서 막히지 않도록 검증 방법(하이픈 제거 형태가 비어 있는지 확인)까지 적었다.
검증
takopy-0.1.0-py3-none-any.whl, entry pointtako = tako.main:run, 슬래시 커맨드 7개 동봉 확인🤖 Generated with Claude Code
https://claude.ai/code/session_01FR3Lm3SnJ329MQV4SwTsut