This commit is contained in:
cxc
2022-08-23 16:24:37 +08:00
commit 0f1bec5970
11 changed files with 897 additions and 0 deletions

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[tool.poetry]
name = "fake_data"
version = "0.1.0"
description = ""
authors = ["cxc <quantulr@outlook.com>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.79.1"
uvicorn = {extras = ["standard"], version = "^0.18.2"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
autopep8 = "^1.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
serve = 'fake_data.main:runApp'