Metadata-Version: 2.1
Name: bclm
Version: 1.0.0
Summary: THE go-to place for all Python Hebrew Treebank processing tasks.
Home-page: https://github.com/cjer/bclm
Author: Dan Bareket
Author-email: dbareket@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: conllu
Requires-Dist: numpy

# bclm
THE go-to place for all Python Hebrew Treebank processing tasks.

## Installation

The installation is standard:

```bash
pip instatll <PATH_TO_WHEEL>
```

In order to create the wheel:
1. Make sure you have the latest versions of setuptools and wheel installed:
```bash
python3 -m pip install --user --upgrade setuptools wheel
```
2. Now run this command from the same directory where setup.py is located:
```bash
python setup.py bdist_wheel
```
3. It will generate a wheel file saved in the `dist` folder. 
4. You can now run 
```bash
pip install <PATH_TO_WHEEL>
```

## Citation

Please cite the NEMO^2 paper if you use bclm in your research:
```bibtex
@article{DBLP:journals/corr/abs-2007-15620,
  author    = {Dan Bareket and
               Reut Tsarfaty},
  title     = {Neural Modeling for Named Entities and Morphology (NEMO{\^{}}2)},
  journal   = {CoRR},
  volume    = {abs/2007.15620},
  year      = {2020},
  url       = {https://arxiv.org/abs/2007.15620},
  archivePrefix = {arXiv},
  eprint    = {2007.15620},
  timestamp = {Mon, 03 Aug 2020 14:32:13 +0200},
  biburl    = {https://dblp.org/rec/journals/corr/abs-2007-15620.bib},
  bibsource = {dblp computer science bibliography, https://dblp.org}
}
```



