Create directory structure

This commit is contained in:
Andy Lu 2023-12-01 11:43:15 -05:00
parent c1ac5a1c54
commit ca016707a3
3 changed files with 26 additions and 0 deletions

1
python/2023/README.org Normal file
View file

@ -0,0 +1 @@
* Advent of Code Python

View file

@ -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"