diff --git a/README.md b/README.md index 82354c8..a6661da 100644 --- a/README.md +++ b/README.md @@ -1 +1,38 @@ # my-testrepo + +A simple Python library containing greeting functions. + +## Features + +The library provides multiple greeting functions: +- `hello()` - Basic greeting function +- `hi()` - Alternative greeting function +- `hi2()` - Another greeting variant + +## Installation + +This package is not currently published on PyPI. To use it, clone this repository: + +```bash +git clone https://github.com/yourusername/my-testrepo.git +``` + +## Usage + +Import and use any of the greeting functions: + +```python +from my_testrepo import hello, hi, hi2 + +hello() # Basic greeting +hi() # Alternative greeting +hi2() # Another greeting variant +``` + +## Contributing + +Contributions are welcome! Please feel free to submit a Pull Request. + +## License + +This project is open source and available under the MIT License.