chore: 初始化项目结构并清理无用文件

添加基础项目文件包括.gitignore、.python-version和pyproject.toml
删除无用的测试文件和旧README内容
添加主程序入口main.py
This commit is contained in:
hblu 2026-01-07 10:32:11 +08:00
parent d92f2f02bb
commit 8507af5018
8 changed files with 3172 additions and 12 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.env
.venv/
__pycache__/
.DS_Store

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.8

View File

@ -1 +0,0 @@
asdasd

View File

@ -1,10 +0,0 @@
21312321
3
213
21
3
123
21
321

1
asdasd
View File

@ -1 +0,0 @@
.py

6
main.py Normal file
View File

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

10
pyproject.toml Normal file
View File

@ -0,0 +1,10 @@
[project]
name = "test"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"openai>=2.2.0",
"streamlit>=1.40.1",
]

3151
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff