Initial commit

This commit is contained in:
nate 2025-05-20 00:21:17 +00:00
commit ce9b3e3e59
6 changed files with 83 additions and 0 deletions

15
.commit_template Normal file
View File

@ -0,0 +1,15 @@
# -----------------------------------------------------------------
# Write your entire commit message above this line.
#
# The first line should be a quick description of what you changed.
# Then leave a blank line.
# Then, taking as many lines as you want, reflect on your progress
# since your last commit. Some possible ways to start:
# - Somewhere I got stuck was __________
# - Something I figured out was ___________
# - A strategy I used to get un-stuck was ____________
# - Something I'm wondering about is ______________
# - Something I want to learn more about is ____________
# - An idea for a future project is _____________-

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.DS_Store

21
README.md Normal file
View File

@ -0,0 +1,21 @@
# (Drawing project)
(
This is the README file for your drawing project.
Replace all the text in parentheses with your own text.
It's written in a simple language called Markdown,
which allows basic formatting.
)
## Description
(Describe your goal for this project. If you want to link to an
image, move the image to this directory, and then use the following syntax:
![Description](filename.png)
)
## Planning
(Include your planning here, including your project milestone.)

7
drawing.py Normal file
View File

@ -0,0 +1,7 @@
# drawing.py
# ----------
# By ____(you)___________
#
# (Briefly describe what this program does.)
from turtle import *

18
poetry.lock generated Normal file
View File

@ -0,0 +1,18 @@
# This file is automatically @generated by Poetry 2.0.0 and should not be changed by hand.
[[package]]
name = "superturtle"
version = "0.2.0"
description = "Extensions to Python's turtle"
optional = false
python-versions = "<4.0,>=3.9"
groups = ["main"]
files = [
{file = "superturtle-0.2.0-py3-none-any.whl", hash = "sha256:ca3a31be3259387b4490846adbf64502acc9d23472912cc43497ab170e89f506"},
{file = "superturtle-0.2.0.tar.gz", hash = "sha256:807fb419c1dba9cb809a22a68e72c0193bdeed4a9326eb36ad940b2a7ff6ac04"},
]
[metadata]
lock-version = "2.1"
python-versions = ">=3.10,<4.0"
content-hash = "6aad436bbbf760fa856344262eab22d62a167cac4e5dfefbf4be77d5a37428c9"

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[project]
name = "project-drawing"
version = "0.1.0"
description = ""
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"superturtle (>=0.2.0,<0.3.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false