first commit
This commit is contained in:
parent
0cd42fc7a2
commit
bbd0702bf7
5 changed files with 1039 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
.idea/
|
||||||
|
|
||||||
# ---> Python
|
# ---> Python
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|
1001
2024/day1/first-input
Normal file
1001
2024/day1/first-input
Normal file
File diff suppressed because it is too large
Load diff
5
2024/day1/first.py
Normal file
5
2024/day1/first.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
def main():
|
||||||
|
pass
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
29
2024/pyproject.toml
Normal file
29
2024/pyproject.toml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[project]
|
||||||
|
name = "advent-of-code"
|
||||||
|
version = "2024.1.1"
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
dev = [
|
||||||
|
"black>=24.4.2,<25.0.0",
|
||||||
|
"isort>=5.13.2,<6.0.0",
|
||||||
|
"ruff>=0.5.4,<0.6.0",
|
||||||
|
"pytest>=8.3.1,<9.0.0",
|
||||||
|
"pytest-icdiff>=0.9,<1.0",
|
||||||
|
"pytest-sugar>=1.0.0,<2.0.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
line-length = 88
|
||||||
|
|
||||||
|
[tool.isort]
|
||||||
|
profile = "black"
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
pythonpath = [
|
||||||
|
"src"
|
||||||
|
]
|
||||||
|
log_cli = 1
|
||||||
|
log_cli_level = "DEBUG"
|
|
@ -1,2 +1,3 @@
|
||||||
# advent-of-code
|
# Advent of code
|
||||||
|
|
||||||
|
https://adventofcode.com
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue