Metadata-Version: 2.1
Name: passbolt-api
Version: 0.0.5
Summary: Provides API bindings for the Passbolt API
Home-page: https://github.com/xwikisas/passbolt-api
Author: XWiki SAS Development Team
Author-email: pypi@xwiki.com
License: UNKNOWN
Description: # Passbolt API
        
        This package provides bindings to a Passbolt server API. Each of the bindings declared in this package aim to follow the [official Passbolt API documentation](https://api-reference.passbolt.com/).
        
        ## Releasing a new version
        
        Before releasing a new version of the package, please take some time to read a bit about Python packaging [here](https://packaging.python.org/tutorials/packaging-projects/).
        
        Once, this is done, you will need the standard utilities to build and upload the package, namely : 
        
        * setuptools
        * wheel
        * twine
        
        ### Make sure that you have a clean index
        
        * Check that you have nothing to commit
        * Check that you are on `master`
        * Check that you are up to date with the remote repository
        
        ### Build the distribution archives
        
        Simply run :
        
        ```
        python3 setup.py sdist bdist_wheel
        ```
        
        This will generate the package archives in `dist/`
        
        ### Upload the archives to PyPI
        
        Make sure that you have access to one of the maintainers account credentials for the package. You can see the list of maintainers for the project [here](https://pypi.org/project/passbolt-api/).
        
        Prepare the account username and password and then run the following to upload the archives :
        
        ```
        python3 -m twine upload dist/*
        ```
        
        ### Tag the version
        
        For good measure, tag the commit from which you released the packet with `git tag -s v<version> <commit>`.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
