Initial commit
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
/.venv/
|
||||||
|
/build/
|
||||||
|
__pycache__/
|
||||||
|
*.egg-info/
|
7
pyproject.toml
Normal file
7
pyproject.toml
Normal 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
24
readme.md
Normal 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 #>
|
||||||
|
```
|
Reference in New Issue
Block a user