commit ce9b3e3e593df438c90a06adb830589a773f1cbe Author: nate Date: Tue May 20 00:21:17 2025 +0000 Initial commit diff --git a/.commit_template b/.commit_template new file mode 100644 index 0000000..4f86725 --- /dev/null +++ b/.commit_template @@ -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 _____________- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/README.md b/README.md new file mode 100644 index 0000000..aee1fea --- /dev/null +++ b/README.md @@ -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.) diff --git a/drawing.py b/drawing.py new file mode 100644 index 0000000..29fc89e --- /dev/null +++ b/drawing.py @@ -0,0 +1,7 @@ +# drawing.py +# ---------- +# By ____(you)___________ +# +# (Briefly describe what this program does.) + +from turtle import * diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..193eda8 --- /dev/null +++ b/poetry.lock @@ -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" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..cc37974 --- /dev/null +++ b/pyproject.toml @@ -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