Metadata-Version: 2.1
Name: businessman
Version: 0.0.22
Summary: A small example package
Home-page: UNKNOWN
Author: Ahmad Sharif
Author-email: ahmad.sharif.abc@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Description: # Businessman Package
        
        How to update package:
        
        Config token:
        
        `~/.pypirc` :
        
        ```shell
        [testpypi]
            username = __token__
            password = <token>
        ```
        
        ```shell
        [gitlab]
          repository = https://gitlab.example.com/api/v4/projects/businessman/packages/pypi
          username = python package
          password = irsadqVsa-TRNkfkwvYe
        
        ```
        
        execute setup:
        
        ```shell
        python setup.py sdist bdist_wheel
        ```
        
        release a new version:
        
        ```shell
        python -m twine upload --repository testpypi dist/*
        ```
        
        install package:
        
        ```shell
        pip install -i https://test.pypi.org/simple/ businessman 
        ```
        
Keywords: API,CRUD,restx
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
