Metadata-Version: 2.1
Name: ekp-sdk
Version: 0.5.26
Summary: Python SDK for frontend components usage
Home-page: https://github.com/earnkeeper/python-ekp-sdk
Author: Earn Keeper (Gavin Shaw)
Author-email: gavin@earnkeeper.io
License: UNKNOWN
Description: # The Python Earnkeeper SDK
        
        This sdk is used to create frontend components like div, span, columns, rows, datatable and etc., for python modules.
        Number of components will increase in the future.
        
        Developed by **Earn Keeper** team (c)
        
        ## Developing Locally
        
        Install `setuptools`:
        
        ```
        pip install setuptools
        ```
        
        Build the package:
        
        ```
        python setup.py bdist_wheel
        ```
        
        Create a symlink to the package in your local python repository:
        
        ```
        pip install -e .
        ```
        
        Use the package as needed in parent projects:
        
        ```
        from ekp_sdk import BaseContainer
        from ekp_sdk.ui import Chart
        ```
        
        # Deploying
        
        This repository uses Github Actions Continuous Deployment to deploy to Pypi and Pypi test.
        
        Commit and push to `staging` branch to deploy to Pypi TEST.
        
        Commit and push to `main` branch to deploy to Pypi.
        
        â ï¸ Make sure to update package VERSION in `setup.py` before pushing. An error will occur if the version is already deployed
        
        
Keywords: python,earnkeeper,sdk,ekp
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Description-Content-Type: text/markdown
