Metadata-Version: 2.1
Name: checked-exception
Version: 0.0.5
Summary: Use checked exceptions in Python.
Home-page: https://github.com/thejimmylin/checked-exception
Author: thejimmylin
Author-email: b00502013@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Checked Exception

This is a checked exception library, which tries to implement checked exceptions in Python.

## Install building tools
Before publishing, you need to install some tools.
```
pip install wheel twine
```

## Publish to test.pypi.org (for testing purpose)
This makes you test your package before actually publishing it.

```python
# Build & Upload & Cleanup
python setup.py sdist bdist_wheel && python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* && rm -rf dist build *egg-info
```

install it with:
```
pip install -i https://test.pypi.org/simple/ checked-exception
```

## Publish to pypi.org
This makes you actually publish the package to `pypi.org` (where you can `pip install` packages from it).

```python
# Build & Upload & Cleanup
python setup.py sdist bdist_wheel && python -m twine upload dist/* && rm -rf dist build *egg-info
```

You can then install it with regular pip command you normally use:
```
pip install checked-exception
```


