2023-05-04 16:17:35 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "worblehat"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Worblehat is a simple library management system written specifically for Programvareverkstedet"
|
|
|
|
authors = []
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-05-04 16:40:30 +02:00
|
|
|
alembic = "^1.9.4"
|
2023-05-04 16:17:35 +02:00
|
|
|
click = "^8.1.3"
|
2023-05-04 16:40:30 +02:00
|
|
|
flask = "^2.2.2"
|
2023-05-04 16:17:35 +02:00
|
|
|
flask-admin = "^1.6.1"
|
|
|
|
flask-sqlalchemy = "^3.0.3"
|
|
|
|
isbnlib = "^3.10.14"
|
|
|
|
python = "^3.10"
|
|
|
|
python-dotenv = "^1.0.0"
|
2023-05-04 16:40:30 +02:00
|
|
|
sqlalchemy = "^2.0.8"
|
2023-05-04 16:17:35 +02:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
werkzeug = "^2.3.3"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
scanner = "worblehat.tools.scanner:main"
|
2023-05-04 16:40:30 +02:00
|
|
|
dev = "worblehat.wsgi_dev:main"
|
2023-05-04 16:17:35 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|