Metadata-Version: 2.1
Name: helloworld-disw
Version: 0.0.1
Summary: Say hello!
Home-page: https://github.com/lautarodc
Author: Lautaro Delgado
Author-email: ldc0295@gmail.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:
        
        ```commandline
        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
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
