22 lines
466 B
TOML
22 lines
466 B
TOML
[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"}
|
|
SQLAlchemy = "^1.4.40"
|
|
|
|
[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' |