How to Create and upload Python package to pypi
First, create a python project. I assume that you all are already familiar with python and python environment creation so I not gonna talk about it. This post is using a real project (simple) as the demo with PyCharm IDE. After creating the project in the project file list there create a file name "setup.cfg" (extension is cfg). The content is like below. [metadata] name = geometric-open-street-map-api version = 0.0.1 author = kyorilys author_email = kyorilys_256@live.com description = Geometric Open Street Map to get latitude and longitude and distance between two point and route optimizations long_description = file: README.md long_description_content_type = text/markdown url = https://github.com/kyorilys/GeometricApi project_urls = Bug Tracker = https://github.com/kyorilys/GeometricApi/issues classifiers = Programming Language :: Python :: 3 License :: OSI Approved :: MIT License Operating System :: OS Independent [options] package_dir = = src package...