Metadata-Version: 2.4
Name: netfree-unstrict-ssl
Version: 0.1.2
Summary: Small SSL compatibility patch for Python 3.13 with NetFree certificates
Author: Malka Bruk
License-Expression: MIT
Project-URL: Homepage, https://pypi.org/project/netfree-unstrict-ssl/
Keywords: ssl,netfree,python313,certificates
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# netfree-unstrict-ssl

Small SSL compatibility patch for Python 3.13 with NetFree certificates.

## Installation

```powershell
pip install netfree-unstrict-ssl
```

## Publishing to PyPI

Before publishing, make sure the version in `pyproject.toml` was updated.
PyPI does not allow uploading the same version twice.

1. Install the packaging tools:

```powershell
python -m pip install --upgrade build twine
```

2. Remove old build artifacts:

```powershell
Remove-Item -Recurse -Force dist, src\netfree_unstrict_ssl.egg-info
```

3. Build the package:

```powershell
python -m build
```

4. Validate the generated package files:

```powershell
python -m twine check dist/*
```

5. Optional: upload first to TestPyPI:

```powershell
python -m twine upload --repository testpypi dist/*
```

6. Upload to PyPI:

```powershell
python -m twine upload dist/*
```

Use a PyPI API token when prompted for credentials:

- Username: `__token__`
- Password: the API token from PyPI

After publishing, verify the package page:

```text
https://pypi.org/project/netfree-unstrict-ssl/
```
