**First release of the package !**
Introduces `pathtype.Path`, a class you can use as a `type` argument to use with `argparse`.
Contains the following predefined validations:
* `exists`, `not_exists`
* `readable`, `writable`, `executable`
* `parent_exists`
* `creatable`, `writable_or_creatable`
* `name_matches_re`, `name_matches_glob`
* `path_matches_re`, `path_matches_glob`
Also introduces the `pathtype.validation` module containing all the predefined validations to use in your custom validations.
Allows the user to create their own validator.
See the [README](https://github.com/xfrenette/pathtype) for full documentation.