Metadata-Version: 2.1
Name: identity_client
Version: 1.1.6
Summary: A middleware and a set of handlers to handle Code Grant authentication with Cognito
Home-page: UNKNOWN
Author: STITCH
Author-email: engineering@stitch3d.com
License: MIT
Description: # identity-client
        Client lib for the identity service
        
        
        ## Manual deployment
        Since we don't have a CI/CD pipeline set up right now. You'll have to follow the following steps to release
        
        1. Do your changes
        2. Install `bumpversion` and `twine`
        ```
        pip install twine bumpversion
        ```
        3. Bump the version using `bumpversion`
        ```
        bumpversion patch
        ```
        or as an example:
        ```
        bumpversion --current-version 1.1.3 --new-version 1.1.4 patch
        ```
        4. A commit should be made automatically, just push
        ```
        git push
        ```
        5. Build using setup.py
        ```
        python setup.py sdist
        ```
        6. Push to pypi using twine
        ```
        twine upload dist/*
        ```
        Use `1password` to find the credentials for pypi.
        
        In order to upload, we have 2FA and the following needs to be done:
        - username should be "\_\_token__"
        - password should be the Access Token value
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
