Metadata-Version: 2.1
Name: pypi-install
Version: 0.0.4
Summary: Uploading code to PyPi made easy
Home-page: https://github.com/daroodar/Pypi-Install
Author: Osama Arshad Dar
Author-email: 14beeodar@seecs.edu.pk
License: UNKNOWN
Description: # PyPi Install
        ### Introduction
        
        PyPi-Install enables you to upload Python code on [pypi][d1] using just a single function call.
        After running this, you can install your library using the famous `pip install mylibary` command from any terminal. 
        ### Note 
        This libaray only attempts to automate steps listed on the [official website][d2]
        Furthermore, if you want to know more about pypi, head [here][d3]
        
        ### Usage
        
        ##### Pre Requisites
        Before using, you must have the following:
         - Your code uploaded on [GitHub][d4]
            - Copy your github URL link          
         - Your account made on [PyPi][d1]
            - Remember your username and password, they will be used in the code below
        
        ##### Installation
        Install using pip:
        ``` 
        pip install pypi-install
        ```
        
        ##### Configuration
        Configure all connection parameters here.
        ```python
        from pypi-install import pypi-install as PI
        pypirc_username="my_pypi_username" # for e.g. "new_john"
        pypirc_password= "my_pypi_password" # for e.g. "john123"
        directory_of_new_folder = "path_new_directory" # for e.g. "/home/USER/New_Folder"
        version_number="your_project_version_no" # for e.g. "0.0.2"
        author_name_full="full_author_name" # for e.g. "John Smith"
        author_email="author_email" # for e.g. johnsmith123@hotmail.com
        short_description="short_description" # for e.g. "My first PyPi project"
        github_url="your_code_github_url" # for e.g. https://github.com/USER/my_respistory
        python_version="python_version_in_your_computer" for e.g. "3" or "2"
        name_of_project="name_of_pypi_project" for e.g. "my_pypi_code"
        directory_of_python_files=["PATH/my_python_file_1.py","PATH/my_python_file_2.py"] # Include all the python files here
        ```
        ##### Uploading the code! 
        Run Your function
        ```python
        make_pypi_folders(pypirc_username,pypirc_password,directory_of_new_folder,name_of_project,directory_of_python_files,version_number,author_name_full,author_email,short_description,github_url,python_version,invoke_python_by_name='python',license_type="MIT License",operating_system="OS Independent") # There, your code is uploaded on pypi! It's that easy!
        ```
        
        ##### Checking your recently installed package
        To check your package, run this in terminal:
        ```
        pip install your_package_name
        ```
        It should be installed! 
        
        
          
        
           [d1]: <https://pypi.org/>
           [d2]: <https://packaging.python.org/tutorials/packaging-projects/>    
           [d3]: <https://packaging.python.org/tutorials/packaging-projects/>  
           [d4]: <https://github.com/>
         
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
