From 95c294aa61808c37a7bf2c57d75c9ac8898b4f21 Mon Sep 17 00:00:00 2001 From: Nettika Date: Fri, 8 Dec 2023 20:37:08 -0800 Subject: [PATCH] Initial commit --- .gitignore | 4 ++++ pyproject.toml | 7 +++++++ readme.md | 24 ++++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml create mode 100644 readme.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..94beb0c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/.venv/ +/build/ +__pycache__/ +*.egg-info/ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7a07167 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "advent-of-code" +version = "0.1.0" +dependencies = ["pytest"] diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..2d3948d --- /dev/null +++ b/readme.md @@ -0,0 +1,24 @@ +# Advent of Code 2023 + +My solutions to [Advent of Code 2023](https://adventofcode.com/2023) in Python. + +## Setup + +Create and activate a virtual environment: + +```sh +python -m venv .venv +source .venv/bin/ativate +``` + +With the virtual environment actiated, install dependencies: + +```sh +pip install . +``` + +## Usage + +```sh +python +```