Metadata-Version: 2.1
Name: gpravada-helloworld
Version: 0.0.1
Summary: Say Hello
Home-page: https://github.com/gpravada/gpravada-helloworld
Author: Gopi Ravada
Author-email: gp.ravada@gmail.com
License: UNKNOWN
Description: # Hello World
        
        This is an example project demonstrating how to publish a python modile to pypi
        
        ## installation
        
        Run the following to install:
        
        ```python
        pip install helloworld
        ```
        
        ## Usage
        
        ```python
        from helloworld import say_hello
        
        # Generate "Hello, World!"
        say_hello()
        
        #Generate "Hello, Everybody!"
        say_hello("Everybody")
        
        ```
        # Developing Hello World
        To install helloworld, along with the tools you need to develop and run tests, run the following in your virtualenv:
        ```bash
        $ pip install -e .[dev]
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
