Initial commit

This commit is contained in:
Nettika
2023-12-08 20:37:08 -08:00
commit 95c294aa61
3 changed files with 35 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
/.venv/
/build/
__pycache__/
*.egg-info/

7
pyproject.toml Normal file
View File

@@ -0,0 +1,7 @@
[build-system]
requires = ["setuptools"]
[project]
name = "advent-of-code"
version = "0.1.0"
dependencies = ["pytest"]

24
readme.md Normal file
View File

@@ -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 <day #>
```