arcology-fastapi/pyproject.toml

44 lines
1.4 KiB
TOML

# [[file:arcology-poetry.org::+begin_src conf-toml :tangle pyproject.toml][No heading:1]]
[tool.poetry]
name = "arcology"
version = "0.1.0"
description = "The Arcology is a Multi-domain Web Site Engine for Org Roam Files"
authors = ["Ryan Rix <code@whatthefuck.computer>"]
include = ["static", "templates", "pandoc"]
# No heading:1 ends here
# [[file:arcology-poetry.org::+begin_src conf-toml :tangle pyproject.toml][No heading:2]]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# No heading:2 ends here
# [[file:arcology-poetry.org::*Arcology Python Dependencies][Arcology Python Dependencies:1]]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.70"
uvicorn = "^0.16"
sqlmodel = "^0.0.11"
# https://github.com/tiangolo/sqlmodel/issues/315
# sqlalchemy = "1.4.35"
sexpdata = "^0.0.3"
pypandoc = "^1.7"
Jinja2 = "^3.0"
prometheus-fastapi-instrumentator = "^5.7"
asyncinotify = "^2.0.2"
transitions = "^0.8.11"
graphviz = "^0.19.1"
pygraphviz = "^1.9"
async-lru = "^1.0.3"
[tool.poetry.dev-dependencies]
ipdb = "^0.13"
# Arcology Python Dependencies:1 ends here
# [[file:arcology-poetry.org::*Poetry creates Startup Scripts in =PATH=][Poetry creates Startup Scripts in =PATH=:1]]
[tool.poetry.scripts]
arcology-inotify = 'arcology.inotify:start'
arcology-fastapi = 'arcology.server:start'
# Poetry creates Startup Scripts in =PATH=:1 ends here