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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "normality"
version = "3.0.2"
authors = [{ name = "Friedrich Lindenberg", email = "friedrich@pudo.org" }]
license = { file = "LICENSE" }
description = "Micro-library to normalize text strings"
readme = "README.md"
keywords = ["text", "unicode", "normalization", "slugs"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.9"
dependencies = [
"banal >= 1.0.1",
"pyicu >= 2.10.0",
"chardet",
"charset-normalizer >= 2.0.0",
]
# dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/pudo/normality"
Repository = "https://github.com/pudo/normality.git"
Issues = "https://github.com/pudo/normality/issues"
[project.optional-dependencies]
icu = []
dev = ["mypy", "pytest", "types-chardet", "wheel", "build"]
[tool.hatch.build.targets.sdist]
only-include = ["normality", "LICENSE", "README.md"]
[tool.distutils.bdist_wheel]
universal = true
|