27 lines
615 B
TOML
27 lines
615 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",
|
|
"safety>=3.6.0",
|
|
]
|