7 Commits

Author SHA1 Message Date
8106f4d2df fixed readme 2026-05-20 17:42:42 -05:00
86113d9573 added readme template 2026-05-20 17:35:42 -05:00
224939feaf fixed release naming in workflow publish.yml 2026-05-19 18:01:49 -05:00
de801eda78 fixed release naming in workflow publish.yml
All checks were successful
Pack Validation CI / validate (push) Successful in 7s
2026-05-19 18:01:10 -05:00
f2301f9317 changed toml file
All checks were successful
Pack Validation CI / validate (push) Successful in 9s
Publish Language Pack / verify (push) Successful in 6s
Publish Language Pack / publish (push) Successful in 12s
2026-05-19 17:57:02 -05:00
0fbbb30e5b added tests, files, workflow, toml, etc 2026-05-19 17:52:03 -05:00
409129eff1 added readme and licence 2026-05-19 17:33:13 -05:00
3 changed files with 51 additions and 7 deletions

View File

@@ -66,7 +66,7 @@ jobs:
-H "Content-Type: application/json" \
-d "{
\"tag_name\": \"$TAG\",
\"name\": \"$REPO_NAME $TAG\",
\"name\": \"$TAG\",
\"body\": \"Language pack release version $TAG for the foreignthon transpiler framework.\",
\"draft\": false,
\"prerelease\": false

View File

@@ -1 +1,38 @@
# foreignthon-ta
# foreignthon-ta
Tamil language pack for ForeignThon.
## Install
```bash
pip install foreignthon foreignthon-ta
```
## Usage
```py
fpy run main.ta.py
```
## What's translated
- **Keywords** — {keywords}
- **Builtins** — {builtins}
- **Exceptions** — {exceptions}
- **Stdlib** — {stdlib}
{postfix_section}
## Documentation
→ https://foreignthon.keshavanand.net/
## Contributing
Found a missing translation or a better keyword choice? Open an issue or PR — no core access needed.
## License
GPL

View File

@@ -4,15 +4,22 @@ build-backend = "hatchling.build"
[project]
name = "foreignthon-ta"
version = "0.2.2"
version = "0.2.3"
description = "Tamil language pack for ForeignThon."
license = { text = "GPL v3" }
requires-python = ">=3.9"
authors = [
{ name = "Keshav Anand", email = "keshavanand.dev@gmail.com" }
]
authors = [{ name = "Keshav Anand", email = "keshavanand.dev@gmail.com" }]
keywords = ["foreignthon", "tamil", "தமிழ்"]
dependencies = ["foreignthon>=0.5.2"]
dependencies = ["foreignthon>=0.5.3"]
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"