From ca016707a34e9c308e2f36c88a3b7fbc60ae1862 Mon Sep 17 00:00:00 2001 From: Andy Lu Date: Fri, 1 Dec 2023 11:43:15 -0500 Subject: [PATCH] Create directory structure --- python/2023/README.org | 1 + python/2023/pyproject.toml | 25 +++++++++++++++++++++++ python/2023/src/andy_aoc_2023/__init__.py | 0 3 files changed, 26 insertions(+) create mode 100644 python/2023/README.org create mode 100644 python/2023/pyproject.toml create mode 100644 python/2023/src/andy_aoc_2023/__init__.py diff --git a/python/2023/README.org b/python/2023/README.org new file mode 100644 index 0000000..5d6dc09 --- /dev/null +++ b/python/2023/README.org @@ -0,0 +1 @@ +* Advent of Code Python diff --git a/python/2023/pyproject.toml b/python/2023/pyproject.toml new file mode 100644 index 0000000..44778ea --- /dev/null +++ b/python/2023/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "andy_aoc_2023" +version = "0.0.1" +dependencies = [ + "", +] +authors = [ + { name="Andy Lu" }, +] +description = "All of my code for 2023" +readme = "README.org" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://github.com/luandy64/advent-of-code" +Issues = "https://github.com/luandy64/advent-of-code/issues" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" \ No newline at end of file diff --git a/python/2023/src/andy_aoc_2023/__init__.py b/python/2023/src/andy_aoc_2023/__init__.py new file mode 100644 index 0000000..e69de29