15 lines
367 B
TOML
15 lines
367 B
TOML
[tool.poetry]
|
|
name = "aitist"
|
|
version = "0.1.0"
|
|
description = "A new Python project managed by Poetry."
|
|
authors = ["Timothy Farrell <tim@thecookiejar.me>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
fastapi = "^0.75.2"
|
|
uvicorn = {extras = ["standard"], version = "^0.17.6"}
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|