-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jaunel Deans
authored and
Jaunel Deans
committed
Mar 15, 2024
0 parents
commit bb9df98
Showing
4 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
entrypoint = "main.py" | ||
modules = ["python-3.10:v18-20230807-322e88b"] | ||
|
||
hidden = [".pythonlibs"] | ||
|
||
[nix] | ||
channel = "stable-23_05" | ||
|
||
[unitTest] | ||
language = "python3" | ||
|
||
[deployment] | ||
run = ["python3", "main.py"] | ||
deploymentTarget = "cloudrun" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Jaunel Deans | ||
# September 18, 2023 | ||
#Task Make | ||
# Write a program that outputs a joke on multiple lines. | ||
|
||
import time | ||
# Sleep for 3 seconds | ||
print("1. What did the horse say after it tripped?") | ||
time.sleep(1.5) | ||
print("Answer: Help! I’ve fallen and I can’t giddyup!") | ||
time.sleep(3) | ||
print("2. What would bears be without bees?") | ||
time.sleep(1.5) | ||
print("Answer: Ears") |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[tool.poetry] | ||
name = "python-template" | ||
version = "0.1.0" | ||
description = "" | ||
authors = ["Your Name <you@example.com>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10.0,<3.11" | ||
|
||
[tool.pyright] | ||
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md | ||
useLibraryCodeForTypes = true | ||
exclude = [".cache"] | ||
|
||
[tool.ruff] | ||
# https://beta.ruff.rs/docs/configuration/ | ||
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM'] | ||
ignore = ['W291', 'W292', 'W293'] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |