Metadata-Version: 2.1
Name: swachand-helloworld
Version: 0.0.3
Summary: Say Hello!
Home-page: https://github.com/SwatiChandak/swatichandak-helloworld
Author: Swati Chandak
Author-email: swati.chandak@publicissapient.com
License: UNKNOWN
Description: # Hello World
        
        This is an example project demonstrating how to publish a python module to PyPI. 
        
        ## Installation
        
        Run the following to install:
        
        ```python
        pip install swachand_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 virutalenv:
        
        ```bash
        $ pip install -e .[dev]
        $ pip install -e .'[dev]' # for ZSH 
        $ pip install -e ."[dev]" # for Windows 
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
