Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 44 for setup (0.041 sec.)
8. Distutilsの拡張 — Python 3.6.5 ドキュメント 8268
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... のdistutilsの拡張は、既存コマンドの動作を修正したい setup.py スクリプト中で行われます。その多くは、パッケージ ... どの場合にもっとも妥当な方法は、新しい実装をあなたの setup.py スクリプトに取り込み、 distutils.core.setup() 関 ... t build_py as _build_py from distutils.core import setup class build_py ( _build_py ): """Specialized Pytho ... .""" # implement whatever needs to be different... setup ( cmdclass = { 'build_py' : build_py }, ... ) この ...
https://man.plustar.jp/python/distutils/extending.html - [similar]
6. Python Package Index (PyPI) — Python 3.6.5 ドキュメント 8145
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... 送信するために使います。次のように実行します: python setup . py register Distutils は以下のようなプロンプトを ... た直後に呼び出されます。例えば、次のコマンド python setup . py sdist bdist_wininst upload は、ソース配布物と ... wsのインストーラをPyPIにアップロードします。以前に setup.py を実行してビルドした配布物もアップロード対象にな ... とは異なる PyPI サーバを指定出来ます。例えば: python setup . py sdist bdist_wininst upload - r https : // exa ...
https://man.plustar.jp/python/distutils/packageindex.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 7960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 示す幾つかのファイルを含んだディレクトリツリーです。 Setuptools や pip などの一般的なインストールツールは期待 ... r ) self . create_configuration ( context ) self . setup_python ( context ) self . setup_scripts ( context ... ) self . post_setup ( context ) メソッド ensure_directories() , create ... _configuration() , setup_python() , setup_scripts() , post_setup() はそれぞ ...
https://man.plustar.jp/python/library/venv.html - [similar]
10. API リファレンス — Python 3.6.5 ドキュメント 7530
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... る唯一のモジュールが distutils.core モジュールです。 setup() 関数 (セットアップスクリプトから呼び出されます)を ... s.cmd.Command クラスを提供します。 distutils.core. setup ( arguments ) ¶ 全てを実行する基本的な関数で、Dist ... utilsでできるほとんどのことを実行します。 setup関数はたくさんの引数をとります。以下のテーブルにまと ... stutils.core.Distribution のサブクラス script_name setup.pyスクリプトの名前 - デフォルトでは sys.argv[0] 文 ...
https://man.plustar.jp/python/distutils/apiref.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 7407
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... テスト結果を集計してレポートを作成する事ができます。 setUp() および tearDown() メソッドによって各テストメソッ ... らの設定は繰り返しになるかもしれません。 幸いにも、 setUp() メソッドを実装することで設定コードをくくり出すこ ... テストフレームワークは実行するテストごとに自動的に setUp() を呼びます: import unittest class WidgetTestCase ... ( unittest . TestCase ): def setUp ( self ): self . widget = Widget ( 'The widget' ) ...
https://man.plustar.jp/python/library/unittest.html - [similar]
Python モジュールの配布 (レガシーバージョン) — Python 3.6.5 ドキュメント 7253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... .3. Python 一般の用語 1.4. Distutils 固有の用語 2. setup スクリプトを書く 2.1. パッケージを全て列挙する 2.2 ... ァイルをインストールする 2.8. 追加のメタデータ 2.9. setup スクリプトをデバッグする 3. setup 設定ファイル (se ...
https://man.plustar.jp/python/distutils/index.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 7253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... たからです。2.0 ではそれらを、引数解析関数 PyArg_ParseTuple() を使って現代化していて、これはより助けとなるエ ... l あるいは zip アーカイブを展開し、その後 " python setup.py install " を実行します。プラットフォームは自動的 ... レクトリに行ったり、などです。 Distutils を使うには setup.py スクリプトを書く必要があります。単純なケースでは ... ソフトウェアが .py ファイルだけを含む場合、最小限の setup.py は数行足らずで書けます: from distutils.core imp ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 7100
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ファイルにここまでのコードを書き込み、次の内容を持つ setup.py を用意します: from distutils.core import setup ... , Extension setup ( name = "custom" , version = "1.0" , ext_modules ... そして、シェルから以下のように入力します $ python setup.py build at a shell should produce a file custom.s ... d use cases to use the newer and better-maintained setuptools library. Documentation on how to do this is o ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 7054
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ということは、話をより簡単にしてくれます。 あなたの setup.py ファイルに、相応しいサポートバージョンを明記する ... ことを忘れないこと ¶ setup.py ファイルに、あなたがサポートする Python バージョ ... クすることなく即座に気付くことが出来ます。 あなたの setup.py ファイルを更新して Python 3 互換を謳う ¶ あなた ... のコードが Python 3 で動作するようになったら、 setup.py の classifiers を Programming Language :: Pytho ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 6977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の結果をスタックに積みます。 バージョン 3.5 で追加. SETUP_ASYNC_WITH ¶ 新たなフレームオブジェクトを作成します ... ターとして delegate します。 バージョン 3.3 で追加. SETUP_ANNOTATIONS ¶ Checks whether __annotations__ is de ... fined in locals() , if not it is set up to an empty dict . This opcode is only emitted if ... を構築するために、後で CALL_FUNCTION に呼ばれます。 SETUP_WITH ( delta ) ¶ この命令コードは、with ブロックが ...
https://man.plustar.jp/python/library/dis.html - [similar]
PREV 1 2 3 4 5 NEXT