2024-02-11 16:49:15 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "foxfiles"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "file server"
|
|
|
|
authors = ["sam <sam@sleepycat.moe>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
|
|
|
flask = "^3.0.2"
|
|
|
|
itsdangerous = "^2.1.2"
|
|
|
|
uvicorn = "^0.27.1"
|
|
|
|
sqlalchemy = "^2.0.25"
|
|
|
|
flask-pydantic = "^0.12.0"
|
|
|
|
environs = "^10.3.0"
|
|
|
|
python-magic = "^0.4.27"
|
|
|
|
argon2-cffi = "^23.1.0"
|
2024-02-13 02:33:04 +01:00
|
|
|
gunicorn = "^21.2.0"
|
2024-02-11 16:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|