Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[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.0"
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