commit d0f37a0b27ffa19e9a6e1042acd7e24b0142209e Author: NianJiu Date: Wed Sep 11 23:34:42 2024 +0800 init: 初始化项目 - 创建了基本的项目结构 - 添加了 .gitignore 文件 - 配置了基本的开发环境 - 添加清华镜像源 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d26d66 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# created by virtualenv automatically +.idea/ +.venv/ +poetry.lock \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ad7964d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "interfaceautotest" +version = "0.1.0" +description = "" +authors = ["NianJiu "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" + + +[[tool.poetry.source]] +name = "tsinghua" +url = "https://pypi.tuna.tsinghua.edu.cn/simple" +priority = "primary" \ No newline at end of file