-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6615e2
commit 108e7ee
Showing
3 changed files
with
34 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[project] | ||
name = "libindic-normalizer" | ||
authors = [{name = "Santhosh Thottingal", email="santhosh.thottingal@gmail.com"}] | ||
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" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://libindic.org/normalizer" | ||
|
||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
|
||
[tool.setuptools.package-data] | ||
"*" = ["*.rules"] | ||
|
||
[project.entry-points."libindic.api.rest"] | ||
normalize = "normalizer.expose:normalize" | ||
|
||
[tool.distutils.bdist_wheel] | ||
universal = true |