this project is a template or a guide to help you develop your own python package.
.
├── python-package
│ ├── pythonPackage
│ │ ├── __init__.py
│ │ ├── subpackage
│ │ │ ├── __init__.py
│ │ │ └── module.py
│ ├── setup.py
│ ├── README.md
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── requirements.txt
│ ├── MANIFEST.in
│ ├── tox.ini
│ └── tests
│ ├── __init__.py
│ ├── pytest.ini
│ ├── config.py
│ └── test_sub_package
│ ├── __init__.py
│ └── test_module.py
pip install -e .
python setup.py sdist bdist_wheel
sdidt: source distribution
bdist_wheel: wheel distribution
twine upload dist/*
twine upload -r testpypi dist/*