-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed74072
commit 5a86236
Showing
8 changed files
with
82 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Python application | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.7", "3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r test-requirements.txt | ||
- name: Run tests | ||
run: | | ||
make test |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[project] | ||
name = "libindic-payyans" | ||
authors = [ | ||
{ name = "Santhosh Thottingal", email = "[email protected]" }, | ||
{ name = "Nishan Naseer", email = "[email protected]" }, | ||
{ name = "Manu S Madhav", email = "[email protected]" }, | ||
{ name = "Rajeesh K Nambiar", email = "[email protected]" }, | ||
{ name = "Akshay S Dinesh", email = "[email protected]" }, | ||
{ name = "Balasankar C", email = "[email protected]" }, | ||
{ name = "Jishnu Mohan", email = "[email protected]" }, | ||
] | ||
description = "ASCII to Unicode converter" | ||
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", | ||
] | ||
dependencies = [ | ||
"libindic-normalizer@git+https://github.com/libindic/normalizer.git" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://libindic.org/payyans" | ||
|
||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
|
||
[tool.setuptools.package-data] | ||
"*" = ["templates/libindic.payyans.html", "maps/*.map"] | ||
|
||
[project.entry-points."libindic.api.rest"] | ||
unicode2ascii = "payyans.expose:unicode2ascii" | ||
ascii2unicode = "payyans.expose:ascii2unicode" | ||
|
||
[tool.distutils.bdist_wheel] | ||
universal = true |
This file was deleted.
Oops, something went wrong.