Download free for 30 days
Sign in
Upload
Language (EN)
Support
Business
Mobile
Social Media
Marketing
Technology
Art & Photos
Career
Design
Education
Presentations & Public Speaking
Government & Nonprofit
Healthcare
Internet
Law
Leadership & Management
Automotive
Engineering
Software
Recruiting & HR
Retail
Sales
Services
Science
Small Business & Entrepreneurship
Food
Environment
Economy & Finance
Data & Analytics
Investor Relations
Sports
Spiritual
News & Politics
Travel
Self Improvement
Real Estate
Entertainment & Humor
Health & Medicine
Devices & Hardware
Lifestyle
Change Language
Language
English
Español
Português
Français
Deutsche
Cancel
Save
Submit search
EN
Uploaded by
Yukino Ikegami
PPTX, PDF
842 views
PyPI入門2018
at PyLadies Tokyo 4th Anniversary party
Engineering
◦
Read more
0
Save
Share
Embed
Embed presentation
Download
Download to read offline
1
/ 12
2
/ 12
3
/ 12
4
/ 12
5
/ 12
6
/ 12
7
/ 12
8
/ 12
9
/ 12
10
/ 12
11
/ 12
12
/ 12
More Related Content
PDF
トランザクショナルアップデート ― Btrfsを活用したパッケージ更新方法
by
Fuminobu Takeyama
PPTX
Hannari python#27
by
hiroya akita
PDF
パッケージングの今
by
Atsushi Odagiri
PDF
Pythonを取り巻く開発環境 #pyconjp
by
Yoshifumi Yamaguchi
PDF
みんなのPython勉強会#77 パッケージングしよう
by
Atsushi Odagiri
PPTX
Introduction to Python 3.4 as of beta 1
by
Toru Furukawa
PDF
PYTHON PACKAGING (PyFes 2012.03 発表資料)
by
Takayuki Shimizukawa
PDF
S03 t1 python_learningdiary#3
by
Takeshi Akutsu
トランザクショナルアップデート ― Btrfsを活用したパッケージ更新方法
by
Fuminobu Takeyama
Hannari python#27
by
hiroya akita
パッケージングの今
by
Atsushi Odagiri
Pythonを取り巻く開発環境 #pyconjp
by
Yoshifumi Yamaguchi
みんなのPython勉強会#77 パッケージングしよう
by
Atsushi Odagiri
Introduction to Python 3.4 as of beta 1
by
Toru Furukawa
PYTHON PACKAGING (PyFes 2012.03 発表資料)
by
Takayuki Shimizukawa
S03 t1 python_learningdiary#3
by
Takeshi Akutsu
More from Yukino Ikegami
PPTX
出会って5行でディープラーニング推論
by
Yukino Ikegami
PPTX
続・本当にあった怖い話 クローラ編
by
Yukino Ikegami
PPT
本当にあった怖い話 「Hadoopで炎上しかけた話」
by
Yukino Ikegami
PPTX
テキスト前処理用Pythonモジュールneologdnの紹介
by
Yukino Ikegami
PPTX
Pythonで機械学習を自動化 auto sklearn
by
Yukino Ikegami
PPTX
Modeless Japanese Input Method
by
Yukino Ikegami
PPTX
Clause Anaphora Resolution for Japanese Demonstrative Determiner based on Sem...
by
Yukino Ikegami
PPTX
Topic and Opinion Classification based Information Credibility Analysis on Tw...
by
Yukino Ikegami
出会って5行でディープラーニング推論
by
Yukino Ikegami
続・本当にあった怖い話 クローラ編
by
Yukino Ikegami
本当にあった怖い話 「Hadoopで炎上しかけた話」
by
Yukino Ikegami
テキスト前処理用Pythonモジュールneologdnの紹介
by
Yukino Ikegami
Pythonで機械学習を自動化 auto sklearn
by
Yukino Ikegami
Modeless Japanese Input Method
by
Yukino Ikegami
Clause Anaphora Resolution for Japanese Demonstrative Determiner based on Sem...
by
Yukino Ikegami
Topic and Opinion Classification based Information Credibility Analysis on Tw...
by
Yukino Ikegami
PyPI入門2018
1.
PyPI 入門 2018 5分サイズ 2018/10/08 Yukino
Ikegami PyLadies Tokyo 4th Anniversary party
2.
PyPI (パイピーアイ) とは •
https://pypi.org/ • Python Package Indexの略 • Pythonパッケージを管理するためのサイト/リポジトリ • pip install *** の *** を置いてるところ
3.
Pythonパッケージ公開までの手順 1. PyPIのアカウント作成 – https://pypi.org/account/register/ 2.
setup.pyを書く 3. 開発 4. PyPIに登録/アップロード
4.
setup.pyを書く
5.
setup.pyに書くこと 1. まずsetuptoolsをimport – distutilsはオワコン 2.
setuptools.setupメソッドにPyPIに登録する情報 を渡す • 有名パッケージのsetup.pyを参考にするといい
6.
最低限setup.pyに書くこと • name…………………パッケージの名前 • version………………パッケージのバージョン •
description…………パッケージの短い説明 • long_description….パッケージの長い説明 • author………………作者 • packages……………パッケージのパス • license………………パッケージのライセンス • install_requires…...依存パッケージのリスト
7.
Setup.pyのlong_descriptionに 書いたほうがいいこと • パッケージの使い方 • バージョンごとの変更点 •
reStructuredText フォーマットで書く – setup.pyに long_description_content_type=”text/markdown”, と追加すればMarkdown形式が可能に!
8.
PyPIに登録/アップロード 1. Twineのインストール – pip
install twine 2. パッケージのビルド 3. パッケージのアップロード
9.
パッケージのビルド • ソースコードのビルド – python
setup.py sdist • Wheelのビルド – pip install wheel – python setup.py bdist_wheel • 成果物はdistディレクトリにできる
10.
パッケージのアップロード • twine upload
dist/* • これだけ!
11.
まとめ • Pythonパッケージの公開は簡単にできる! – 細かい罠があるけど…
(今回は触れない)
12.
参考 • PyPIデビュー2015 • Python:
Twine を使って PyPI にパッケージを アップロードする - CUBE SUGAR CONTAINER • 新しいPyPIでMarkdownのドキュメントを使う – Aki Ariga – Medium
Download