Files
python-utils/pyproject.toml
T
Brian Bjarke Jensen 95a8a29e2f
Code Quality Pipeline / code-quality (push) Failing after 2m6s
Test Python Package / test (push) Failing after 15s
Type Check / type-check (push) Failing after 14s
initial commit
2025-08-27 22:42:09 +02:00

26 lines
594 B
TOML

[project]
name = "python-utils"
version = "0.1.0"
description = "Utility functions used across repositories running Python."
authors = [
{ name = "Brian Bjarke Jensen", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[dependency-groups]
dev = [
"mypy>=1.17.1",
"pre-commit>=4.3.0",
"pytest>=8.4.1",
"pyupgrade>=3.20.0",
"ruff>=0.12.10",
]