Metadata-Version: 2.1
Name: businessman
Version: 0.0.21
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
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

# Businessman Package

How to update package:

Config token:

`~/.pypirc` :

```editorconfig
[testpypi]
    username = __token__
    password = <token>
```

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 
```


