A minimal Python package to practice module design, Git, and open-source contribution workflow.
greet(name): Returns a greeting message.farewell(name): Returns a farewell message.
my_dev_package/ │ ├── init.py │ └── helper.py ├── main.py ├── README.md
- Clone the repo:
git clone https://github.com/debasmita2102/my_dev_package.git cd my_dev_package
python main.py