Metadata-Version: 2.1
Name: AbdallahRadwanLib
Version: 0.5
Summary: My First Package for Python Projects with PyPI Package - October 2024
Home-page: https://github.com/abdorado1984/AbdallahPackage
Author: Abdallah Radwan
Author-email: AbdallahRadwan2011@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# AbdallahPackage
* Install the following packages : 
    pip install twine
    pip install setuptools wheel
    pip install tqdm
    python setup.py sdist
    twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

* Update My Package :    
    Update the Version Number
    clear setup info
        rm -rf dist/ build/ *.egg-info
    
    prepare setup info 
        python setup.py bdist_wheel
        python setup.py sdist
                or
        python setup.py bdist_wheel sdist

    twine check dist/*    
    
    twine upload dist/*
            or
    twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

    past my token

    pip install dist/AbdallahRadwanLib-0.4-py3-none-any.whl
    
    

* Reinstall with --force-reinstall and --no-binary
    pip install --force-reinstall --no-binary=:all: AbdallahRadwanLib

* Download the source manually
    pip download --no-binary=:all: AbdallahRadwanLib
    tar -xvzf AbdallahRadwanLib-0.4.tar.gz


* View at:
    https://pypi.org/project/AbdallahRadwanLib/0.4/

* Install Command :
    pip install AbdallahRadwanLib==0.4


    
