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?

More than 3 years have passed since last update.

PyPIデビューする際に参考になった書籍とリンク

Last updated at Posted at 2020-08-10

PyPIに初めてパッケージを配布しました。
基本的にはPython実践入門を写経しました。
その際に細かな設定を調べたり、知識を補完するのに役立ったリンクを紹介していきます。

Python実践入門 に関して

11章にパッケージ管理に関して紹介されています。
パッケージ配布に必要な設定と配布方法が書いてあるので、そちらを写経してPyPIパッケージを配布までできました。

参考になったリンク

配布結果

無事配布ができました :thumbsup:

$ twine upload -r testpypi dist/*
Enter your username: nassy
Enter your password: 
Uploading distributions to https://test.pypi.org/legacy/
Uploading py37nashiki-1.0.0-py3-none-any.whl
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 6.73k/6.73k [00:02<00:00, 2.54kB/s]
Uploading py37nashiki-1.0.0.tar.gz
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 6.93k/6.93k [00:01<00:00, 3.89kB/s]

View at:
https://test.pypi.org/project/py37nashiki/1.0.0/
(venv) 
$ twine upload -r pypi dist/*
Enter your username: nassy
Enter your password: 
Uploading distributions to https://upload.pypi.org/legacy/
Uploading py37nashiki-1.0.0-py3-none-any.whl
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 6.83k/6.83k [00:05<00:00, 1.18kB/s]
Uploading py37nashiki-1.0.0.tar.gz
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 7.04k/7.04k [00:00<00:00, 7.24kB/s]

View at:
https://pypi.org/project/py37nashiki/1.0.0/
(newenv) 
 ~/.ghq/github.com/nnashiki/play_py37_package 
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?