使用 UV 包管理器

This commit is contained in:
2025-04-30 23:40:28 +08:00
parent bf400ca9c2
commit f33d7bbec8
33 changed files with 49 additions and 239 deletions

1
comet/.python-version Normal file
View File

@@ -0,0 +1 @@
3.13

0
comet/agent_logs.log Normal file
View File

6
comet/main.py Normal file
View File

@@ -0,0 +1,6 @@
def main():
print("Hello from comet!")
if __name__ == "__main__":
main()

7
comet/pyproject.toml Normal file
View File

@@ -0,0 +1,7 @@
[project]
name = "Comet"
version = "0.1.0"
description = "A onboard controller implementation of AiraPulsar Flight Control System"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []