Skip to content

Commit

Permalink
Version 0.0.3.dev1
Browse files Browse the repository at this point in the history
Added support for English to Tamil.
  • Loading branch information
ndyashas committed Aug 15, 2020
1 parent 72eff04 commit 1dc4727
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
[![Documentation Status](https://readthedocs.org/projects/dhwani/badge/?version=latest)](https://dhwani.readthedocs.io/en/latest/?badge=latest)

# Dhwani
English to Indic language phonetic conversion engine
English to Indic language phonetic conversion engine. Read more about the project [here](https://ndyashas.github.io/projects/Dhwani.html).

## Installation
Dhwani is currently **not** stable. However, the developmental release is [avalibale at PyPI](https://pypi.org/project/dhwani/).

### Installing from PyPI
```
$ pip install dhwani
```

### Installing from sources
```
$ git clone https://github.com/ndyashas/Dhwani.git
$ cd Dhwani
$ pip install -r requirements.txt
$ pip install -e .
```
## Currently supported conversions
* English to Kannada
* English to Devnagari
* English to Tamil
2 changes: 1 addition & 1 deletion dhwani/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from dhwani.core.converter import Converter

__version__ = "0.0.2"
__version__ = "0.0.3.dev1"
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('../../'))

import dhwani

# -- Project information -----------------------------------------------------

Expand All @@ -22,7 +22,7 @@
author = 'Yashas ND'

# The full version, including alpha/beta/rc tags
release = '0.0.2'
release = dhwani.__version__


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 1dc4727

Please sign in to comment.