Create directory structure
This commit is contained in:
parent
c1ac5a1c54
commit
ca016707a3
3 changed files with 26 additions and 0 deletions
1
python/2023/README.org
Normal file
1
python/2023/README.org
Normal file
|
@ -0,0 +1 @@
|
|||
* Advent of Code Python
|
25
python/2023/pyproject.toml
Normal file
25
python/2023/pyproject.toml
Normal 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"
|
0
python/2023/src/andy_aoc_2023/__init__.py
Normal file
0
python/2023/src/andy_aoc_2023/__init__.py
Normal file
Loading…
Reference in a new issue