-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
45 lines (40 loc) · 1.44 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
[project]
name = "libindic-normalizer"
authors = [
{ name = "Santhosh Thottingal", email = "[email protected]" },
{ name = "Akshay S Dinesh", email = "[email protected]" },
{ name = "Balasankar C", email = "[email protected]" },
{ name = "Diadara", email = "[email protected]" },
{ name = "Jerin Philip", email = "[email protected]" },
{ name = "Jishnu Mohan", email = "[email protected]" },
{ name = "Vasudev Kamath", email = "[email protected]" },
{ name = "sara-02", email = "[email protected]" },
{ name = "Kavya Manohar", email = "[email protected]" },
]
description = "Malayalam language normalizer (Experimental)"
requires-python = ">=3.7"
license = { text = "LGPL-3.0" }
version = "2.0"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: DFSG approved",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
]
dependencies = [
"importlib-resources",
"pyyaml"
]
[project.urls]
Homepage = "https://libindic.org/normalizer"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.entry-points."libindic.api.rest"]
normalize = "normalizer.expose:normalize"
[tool.distutils.bdist_wheel]
universal = true