30 lines
755 B
TOML
30 lines
755 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "foreignthon-te"
|
|
version = "0.1.1"
|
|
description = "Telugu language pack for ForeignThon."
|
|
license = { text = "GPL v3" }
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "Anish Bairineni" }
|
|
]
|
|
keywords = ["foreignthon", "telugu"]
|
|
dependencies = ["foreignthon>=0.5.4"]
|
|
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.keshavanand.net/foreign-thon/foreignthon-te"
|
|
|
|
[project.entry-points."foreignthon.langs"]
|
|
te = "foreignthon_te"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/foreignthon_te"] |