25 lines
570 B
TOML
25 lines
570 B
TOML
[tool.poetry]
|
|
name = "spiderweb"
|
|
version = "0.9.0"
|
|
description = "A small web framework, just big enough to hold your average spider."
|
|
authors = ["Joe Kaufeld <opensource@joekaufeld.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
peewee = "^3.17.6"
|
|
jinja2 = "^3.1.4"
|
|
cryptography = "^43.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "^0.5.5"
|
|
pytest = "^8.3.2"
|
|
black = "^24.8.0"
|
|
gunicorn = "^23.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry_bumpversion.file."spiderweb/constants.py"]
|