Metadata-Version: 2.4
Name: shaiful_package
Version: 0.1.0
Summary: A simple example package
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"


# From inside the outer my_package/ directory:
pip install -e .

# 1. Install build tools
pip install build twine

# 2. Build the distribution files
python -m build
# Creates: dist/my_package-0.1.0.tar.gz
#          dist/my_package-0.1.0-py3-none-any.whl

# 3. Upload to PyPI (you'll need a free account at pypi.org)
twine upload dist/*





