From d0f37a0b27ffa19e9a6e1042acd7e24b0142209e Mon Sep 17 00:00:00 2001 From: NianJiu Date: Wed, 11 Sep 2024 23:34:42 +0800 Subject: [PATCH] =?UTF-8?q?init:=20=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 创建了基本的项目结构 - 添加了 .gitignore 文件 - 配置了基本的开发环境 - 添加清华镜像源 --- .gitignore | 4 ++++ pyproject.toml | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml 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