Metadata-Version: 2.1
Name: simple-pypi-pycode-pl
Version: 0.0.1
Summary: simple pypi package for pycode PL 2020
Home-page: https://pypi.org/project/simple-pypi-pycode-pl
Author: Krzysztof Szyda
Author-email: krzysztof.szyda@netguru.com
License: UNKNOWN
Description: # Simple PyPi package
        
        ## Local development
        Install requirements
        ```
        pip install -r requirements.txt
        ```
        
        
        ## Build package locally
        
        ```
        pip install .
        ```
        
        ## Usage of the package functions
        Write script and import function
        ```python
        from simple_pypi import another_testing_function
        ```
        
        ## Usage of the command line function
        Run command in bash
        ```bash
        spypi
        ```
        
        ## Upload package to PyPi
        
        ### Build
        ```
        python setup.py bdist
        ```
        
        ### Check
        ```
        twine check dist/*
        ```
        
        ### Upload
        ```
        twine upload -u <USER> -p <PASSWORD> dist /*
        ```
        
        Package has been created: `https://pypi.org/project/simple-pypi-pycode-pl/0.0.1/`
        
        
        ## Instal from PyPi
        ```
        pip install simple-pypi-pycode-pl==0.0.1
        ```
        
        ### Check which spypi version we are using
        ```
        which spypi
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
