Metadata-Version: 2.1
Name: AbdallahRadwanLib
Version: 0.8
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
Requires-Python: >=3.12
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 :    
    pip uninstall AbdallahRadwanLib
    Update the Version Number
    clear setup info
        rm -rf dist/ build/ *.egg-info
    
    prepare setup info 
        python setup.py bdist_wheel sdist
                or
        python setup.py bdist_wheel
        python setup.py sdist        

    twine check dist/*        
    twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
    past my token

    Install the Package Locally
        pip install dist/AbdallahRadwanLib-0.7-py3-none-any.whl
                or
        pip install AbdallahRadwanLib

* 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.6.tar.gz


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

* Install Command :
    pip install AbdallahRadwanLib
            or
    pip install AbdallahRadwanLib==VersionNumber


    
