-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.31 KB
/
pyproject.toml
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 = "2.6.1"
authors = [{ name = "Friedrich Lindenberg", email = "[email protected]" }]
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",
"text-unidecode",
"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 = ["pyicu >= 1.9.3"]
dev = ["pyicu >= 1.9.3", "mypy", "pytest", "types-chardet", "wheel", "build"]
[tool.hatch.build.targets.sdist]
only-include = ["normality", "LICENSE", "README.md"]
[tool.distutils.bdist_wheel]
universal = true