30 lines
851 B
TOML
30 lines
851 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "foreignthon-ta"
|
|
version = "0.2.4"
|
|
description = "Tamil language pack for ForeignThon."
|
|
license = { text = "GPL v3" }
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "Keshav Anand", email = "keshavanand.dev@gmail.com" }
|
|
]
|
|
keywords = ["foreignthon", "tamil", "தமிழ்"]
|
|
dependencies = ["foreignthon>=0.5.4"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Software Development :: Compilers",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.keshavanand.net/foreign-thon/foreignthon-ta"
|
|
|
|
[project.entry-points."foreignthon.langs"]
|
|
ta = "foreignthon_ta"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/foreignthon_ta"] |