Files
dibbler/pyproject.toml

36 lines
685 B
TOML
Raw Normal View History

2023-08-29 18:32:49 +02:00
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dibbler"
version = "1.0.0"
2026-01-06 17:03:51 +09:00
authors = [
{ name = "Programvareverkstedet", email = "projects@pvv.ntnu.no" }
]
2023-08-29 18:32:49 +02:00
description = "EDB-system for PVV"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"SQLAlchemy >= 2.0, <2.1",
2025-03-19 18:47:16 +01:00
"brother-ql",
2023-08-29 18:32:49 +02:00
"matplotlib",
"psycopg2-binary >= 2.8, <2.10",
2023-08-29 18:32:49 +02:00
"python-barcode",
]
[tool.setuptools.packages.find]
include = ["dibbler*"]
[project.scripts]
2023-08-30 00:02:17 +02:00
dibbler = "dibbler.main:main"
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100