-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
47 lines (41 loc) · 1.51 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
46
47
[project]
name = "libindic-payyans"
authors = [
{ name = "Santhosh Thottingal", email = "[email protected]" },
{ name = "Nishan Naseer", email = "[email protected]" },
{ name = "Manu S Madhav", email = "[email protected]" },
{ name = "Rajeesh K Nambiar", email = "[email protected]" },
{ name = "Akshay S Dinesh", email = "[email protected]" },
{ name = "Balasankar C", email = "[email protected]" },
{ name = "Jishnu Mohan", email = "[email protected]" },
]
description = "ASCII to Unicode converter"
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 = [
"libindic-normalizer@git+https://github.com/libindic/normalizer.git",
"libindic-unicode-conversion-maps"
]
[project.urls]
Homepage = "https://libindic.org/payyans"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"*" = ["templates/libindic.payyans.html"]
[project.entry-points."libindic.api.rest"]
unicode2ascii = "payyans.expose:unicode2ascii"
ascii2unicode = "payyans.expose:ascii2unicode"
[tool.distutils.bdist_wheel]
universal = true