Last active
April 16, 2023 01:25
-
-
Save sam159247/0f687d95a5e4e29a9dd9774767aadd6a to your computer and use it in GitHub Desktop.
[Python] Initial temporary project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd $(mktemp -d) | |
poetry new --src temp_project | |
cd temp_project | |
pyenv local 3.11.3 | |
poetry env use python | |
ll | |
poetry add --dev flake8 mypy isort black | |
touch src/temp.py | |
code . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment