Metadata-Version: 2.1
Name: vocably
Version: 0.0.4
Summary: Vocably is a Natural Language Framework written in Python for Language based Tasks.
Home-page: https://github.com/Nandhini25S/Vocably
Author: Nandhini, Sarika
Author-email: nandhinisiva2561@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7,<4
Description-Content-Type: text/markdown
License-File: LICENSE

# Vocably
Vocably is a Natural Language Processing (NLP) Framework written with the purpose to increase the flow of our development in daily basis.
## Quick Installation

```bash
$ pip install vocably
```
## Installation from source 
```bash
$ git clone https://github.com/Nandhini25S/Vocably.git
$ cd Vocably
$ conda env create -f environment.yml
$ export PYTHONPATH=./src
$ python3 setup.py install
```

## Using Makefile (for Linux or Mac Users)
```bash
$ git clone https://github.com/Nandhini25S/Vocably.git
$ cd Vocably
$ conda env create -f environment.yml
```
now we will activate this environment
```bash
$ conda activate vocably
```
to install and config

```bash
$ export PYTHONPATH=./src
$ make install
$ make configure
```
or 
```bash
$ make all
```
## Using batch file (for Windows users)

```bash
$ git clone https://github.com/Nandhini25S/Vocably.git
$ cd Vocably
$ conda env create -f environment.yml
```
now we will activate this environment
```bash
$ conda activate vocably
```
to install and config

```bash
$ Scripts/install.bat
$ Scripts/config.bat
```
