26 lines
521 B
TOML
26 lines
521 B
TOML
[tool.poetry]
|
|
name = "pyles"
|
|
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.0"
|
|
itsdangerous = "^2.1.2"
|
|
environs = "^9.5.0"
|
|
gunicorn = "^21.2.0"
|
|
peewee = "^3.16.3"
|
|
argon2-cffi = "^23.1.0"
|
|
peewee-migrate = "^1.12.2"
|
|
python-magic = "^0.4.27"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.9.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|