Skip to content

Commit 12ad636

Browse files
committed
add uv support, now you dont have to manually install dependencies.
1 parent 8d6765a commit 12ad636

4 files changed

Lines changed: 473 additions & 0 deletions

File tree

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from yatcc-docs!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[project]
2+
name = "yatcc-docs"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.13"
7+
dependencies = [
8+
"mkdocs>=1.6.1",
9+
"mkdocs-material>=9.7.5",
10+
]

0 commit comments

Comments
 (0)