Skip to content
pyproject.toml 991 B
Newer Older
Dom Sekotill's avatar
Dom Sekotill committed
[build-system]
requires = ["flit_core ~=3.8"]
build-backend = "flit_core.buildapi"

[[project.authors]]
name = "Dom Sekotill"
email = "dom.sekotill@kodo.org.uk"

[project]
name = "kodo.quantities"
version = "0.1.1"
Dom Sekotill's avatar
Dom Sekotill committed
description = "Types for representing physical quantities, which have a magnitude and a unit"
license = {file = "LICENCE.txt"}

classifiers = [
	"Development Status :: 4 - Beta",
	"Intended Audience :: Developers",
	"License :: OSI Approved :: Apache Software License",
	"Programming Language :: Python :: 3.11",
	"Programming Language :: Python :: 3.12",
	"Typing :: Typed",
]

requires-python = "~=3.11"

[project.urls]
Source = "https://code.kodo.org.uk/dom/python-quantities"
Issues = "https://code.kodo.org.uk/dom/python-quantities/-/issues"


[tool.isort]
force_single_line = true
line_length = 92


[tool.unimport]
ignore-init = true


[tool.mypy]
strict = true
namespace_packages = true
explicit_package_bases = true
warn_unused_configs = true
warn_unreachable = true