11. Create files:
2 __init__.py setup.py README.md LICENSE
32. Check for setuptools and wheel:
4 pip install --user --upgrade setuptools wheel
53. Generate package:
6 py setup.py sdist bdist_wheel
74. Upload to pip:
8 twine upload dist/*
1A package is basically a directory with Python files and a file with the name __init__.py
1"""to install a python module just use pip command"""
2"""open cmd as administrator and write this command"""
3pip install <package-name>
4"""for ex. pip install pandas"""
5##before writing command first change environment variable to your pip file location