Metadata-Version: 2.1
Name: unimatrix.ext.jose
Version: 0.3.0
Summary: JSON Object Serialization and Encryption
Home-page: https://gitlab.com/unimatrixone
Author: Cochise Ruhulessin
Author-email: cochise.ruhulessin@unimatrixone.io
License: UNKNOWN
Description: # JSON Object Signing and Encryption
        
        The `unimatrix.ext.jose` implements JSON Object Signing and Encryption
        (JOSE). It supplies functions and clasess to create, parse, verify
        and decrypt JOSE-related standards, such as:
        
        - JSON Web Signature (JWS)
        - JSON Web Token (JWT)
        - JSON Web Encryption (JWE)
        
        Install `unimatrix.ext.jose`:
        
        ```
        $ $ pip install --upgrade unimatrix.ext.jose
        ```
        
        Make sure that your local environment satisfies the [specified prequisites](#prequisites).
        
        Head over to the  [development section](#developing) if you plan to contribute
        to this project. The technical documentation is available at
        https://unimatrixone.gitlab.io/libraries/python-unimatrix/jose/.
        
        
        ## Prequisites
        
        The following Python version(s) are compatible with the `unimatrix.ext.jose` package:
        
        - 3.8
        - 3.9
        
        To install or upgrade Python, visit https://www.python.org/downloads/ and
        choose one of the supported releases.
        
        ## Developing ##
        
        Clone the source code repository:
        
        ```
        $ git clone git@gitlab.com:unimatrixone/libraries/python-unimatrix/jose.git
        ```
        
        - Run `make env` to set up the local development environment.
        - Run `make console` to start a Python interpreter.
        - If new requirements are added to the project (see `git log requirements.txt`),
          run `make depsrebuild`.
        - Export the environment variables to a file with `make .env`. Use this command
          when integrating with third-party IDEs such as Eclipse or VSCode. Do not check
          in this file to the version control system - it is local to your environment
          only.
        - Build the technical documentation with `make documentation`.
        - Additional targets may be specified in [`config.mk`](./config.mk).
        
        ## License
        
        Proprietary
        
        [Click or tap here for licensing requests](mailto:cochise.ruhulessin@unimatrixone.io).
        
        ## Author information
        
        This Python package was created by **Cochise Ruhulessin** for the
        [Unimatrix One](https://cloud.unimatrixone.io) project.
        
        - [Send me an email](mailto:cochise.ruhulessin@unimatrixone.io)
        - [GitLab](https://gitlab.com/unimatrixone)
        - [GitHub](https://github.com/cochiseruhulessin)
        - [LinkedIn](https://www.linkedin.com/in/cochise-ruhulessin-0b48358a/)
        - [Twitter](https://twitter.com/magicalcochise)
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP :: Session
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: test
