Skip to content
/ python-starter Public template

Pythonのプロジェクトテンプレート

License

Notifications You must be signed in to change notification settings

negi524/python-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-starter

Pythonのプロジェクトテンプレート

プロジェクトインストール

poetry install

credentialファイル作成

cp src/.env.sample src/.env

プログラム実行

poetry run python src/main.py

or

make main

フォーマット

make format

テスト実行

make test

型チェック

make type-check

全てまとめてチェック

make format test type-check

リポジトリのバージョンアップ

poetry version <バージョン>

パッケージのバージョンアップ

poetry search <パッケージ名>

pyproject.tomlを確認し、必要であれば制約を修正する。 その後

poetry update

poetry documentation