Metadata-Version: 2.1
Name: cltrier_nlp
Version: 0.1.4
Summary: 
Home-page: https://github.com/simon-muenker/cltrier_nlp
License: Apache-2.0
Author: Simon Münker
Author-email: muenker@uni-trier.de
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Text Processing
Requires-Dist: langcodes (>=3.4.0,<4.0.0)
Requires-Dist: langdetect (>=1.0.9,<2.0.0)
Requires-Dist: nltk (>=3.8.1,<4.0.0)
Requires-Dist: pydantic (>=2.7.1,<3.0.0)
Requires-Dist: torch (>=2.2.2,<3.0.0)
Requires-Dist: transformers (>=4.40.1,<5.0.0)
Project-URL: Repository, https://github.com/simon-muenker/cltrier_nlp
Description-Content-Type: text/markdown

# Project Repository: NLP Course (M.Sc. NLP, University Trier)

## Usage

### Install

```bash
pip install cltrier_nlp
```

## Development

### Install

The project is managed by Poetry, a dependency management and packaging library. Please set up a local version according to the [official installation guidelines](https://python-poetry.org/docs/). When finished, install the local repository as follows:

```bash
# install package dependencies
poetry install

# add pre-commit to git hooks
poetry run pre-commit install  
```

### Tests

```bash
poetry run pytest
```

### Linting

```bash
poetry run pre-commit run --all-files
```
