0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

作業メモ: uvからtestpypiにpublish

Last updated at Posted at 2024-10-10

はじめに

uvで作成したpythonライブラリをtestpypiにアップロードしたときの作業メモです。

以下の3ステップで行けました。簡単でした。

環境

  • M1 macOSで作業しました。
  • uv(バージョン0.4)をインストール済みとします。
  • testpypiのアカウント作成済みとします。
  • testpypiのトークンを作成済みとします。
  • testpypiのトークンを環境変数TEST_PYPI_TOKENに登録済みとします

補足

  • pypiにuploadするときは、--publish-urlを省略し、tokenはUV_PUBLISH_TOKEN環境変数に登録するとよいです。
  • pipからtestpypiを試したい場合は以下
    • mkdir test && cd test && uv venv && source .venv/bin/activate && uv pip install ipython # テスト用のuv仮想環境作成
    • uv pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ your-package
    • ipython環境でいろんなコマンドをテスト

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?