diff --git a/README.md b/README.md index 6c754f1..f540a02 100644 --- a/README.md +++ b/README.md @@ -12,23 +12,23 @@ pip install brdocs-validation ## Supported docs and its formats -| Supports | Format | -|:--------:|:-----------------------------------------------:| -| CNPJ | *12.345.678/9012-34* OR _Without special chars_ | -| CPF | *123.456.789-01* OR _Without special chars_ | -| CNH | Only numbers | +| Supports | Format | +|:-----------------:|:-----------------------------------------------:| +| CNPJ | *12.345.678/9012-34* OR _Without special chars_ | +| CPF | *123.456.789-01* OR _Without special chars_ | +| CNH | Only numbers | +| NIS/PIS/PASEP/NIT | *123.45678.90-1* OR _Only numbers_ | ## Usage ```python -from br_docs import CPF, CNPJ, CNH +from br_docs import `Supports` from pydantic import BaseModel -class User(BaseModel): - name: str - age: int +class User(BaseModel): cpf: CPF cnpj: CNPJ cnh: CNH + nis: NIS ``` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 90a6975..c958ab0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "brdocs-validation" -version = "0.0.4" +version = "0.1.0" dependencies = [ "pydantic>=2.0" ]