Metadata-Version: 2.4
Name: mednlp
Version: 0.0.1a1
Summary: Medical Natural Language Processing Toolkit
Home-page: https://github.com/mednlp/mednlp
Author: MedNLP Team
Author-email: MedNLP Team <team@mednlp.org>
License: MIT
Project-URL: Homepage, https://github.com/mednlp/mednlp
Project-URL: Repository, https://github.com/mednlp/mednlp.git
Project-URL: Issues, https://github.com/mednlp/mednlp/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.19.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: scikit-learn>=1.0.0
Requires-Dist: torch>=1.9.0
Requires-Dist: transformers>=4.15.0
Requires-Dist: spacy>=3.2.0
Requires-Dist: nltk>=3.6.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.9; extra == "dev"
Requires-Dist: mypy>=0.910; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# MedNLP

Medical Natural Language Processing Toolkit

## Install

```bash
pip install mednlp
```

## Quick Start

```python
from mednlp import MedicalNLP

med_nlp = MedicalNLP()
text = "Patient presents with chest pain and shortness of breath."
entities = med_nlp.extract_entities(text)
```

## License

MIT License
