23 lines
426 B
TOML
23 lines
426 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 = "^2.3.3"
|
||
|
itsdangerous = "^2.1.2"
|
||
|
environs = "^9.5.0"
|
||
|
gunicorn = "^21.2.0"
|
||
|
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
black = "^23.9.1"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|