Metadata-Version: 2.1
Name: hello-world
Version: 0.1
Summary: A simple hello world project
Home-page: https://repo-url-here
Author: Aline Werner
Author-email: aline.werner@suse.com
License: UNKNOWN
Description: # Hello World
        
        A simple "Hello World" project in Python.
        
        ## Installation
        
        You can install this package using `?`. Ensure you have `?` installed and run the command:
        
        ```bash
        ??? install ???
        ```
        
        ## Usage
        
        ### As a Command Line Interface (CLI)
        
        Once installed, you can use the hello-world command in your terminal:
        
        ``` bash
        hello-world
        ```
        
        This will print:
        
        ```plaintext
        Hello, World!
        ```
        
        ### As a Python Module
        
        You can also use this package as a Python module. Here is an example of how to import and use the main function from the hello_world package:
        
        ```python
        # Import the module
        from hello_world import main
        
        # Call the main function
        main()
        ```
        
        This will output:
        
        ```plaintext
        Hello, World!
        ```
        
        ## License
        
        This project is licensed under the MIT License. See LICENSE.txt for details.
        
        ## Author
        
        Aline Werner - aline.werner@suse.com
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
