1+ [build-system ]
2+ requires = [" setuptools" ," setuptools-scm" ]
3+ build-backend =" setuptools.build_meta"
4+
5+ [project ]
6+ name =" mlmorph"
7+ authors = [
8+ {name =" Santhosh Thottingal" ,email =" santhosh.thottingal@gmail.com" },
9+ ]
10+ description =" Malayalam morphology analyser"
11+ readme =" README.rst"
12+ requires-python =" >=3.8"
13+ keywords = [" Malayalam" ," morphology" ," FST" ," analyser" ," generator" ]
14+ license = {text =" MIT" ,files = [" LICENSE.txt" ]}
15+ classifiers = [
16+ " Programming Language :: Python :: 3" ,
17+ " Programming Language :: Python :: 3.8" ,
18+ " Programming Language :: Python :: 3.9" ,
19+ " Programming Language :: Python :: 3.10" ,
20+ " Programming Language :: Python :: 3.11" ,
21+ " License :: OSI Approved :: MIT License" ,
22+ " Intended Audience :: Developers" ,
23+ ]
24+ dependencies = [
25+ " regex" ,
26+ ' sfst>=1.5.7' ,
27+ ]
28+ dynamic = [" version" ]
29+
30+ [project .scripts ]
31+ mlmorph =" mlmorph.__main__:main"
32+
33+ [tool .setuptools .package-data ]
34+ mlmorph = [" data/malayalam.a" ]
35+
36+ [tool .setuptools_scm ]
37+ search_parent_directories =" true"
38+ git_describe_command =" git describe --tags --abbrev=0"