Skip to content

Commit

Permalink
feat: migrate to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
asdofindia committed Oct 22, 2023
1 parent a6615e2 commit 108e7ee
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 37 deletions.
34 changes: 34 additions & 0 deletions pyproject.toml
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
33 changes: 0 additions & 33 deletions setup.cfg

This file was deleted.

4 changes: 0 additions & 4 deletions setup.py

This file was deleted.

0 comments on commit 108e7ee

Please sign in to comment.