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
packages = find:
python_requires = >=3.6

[options.packages.find]
where = src

As you can see:

1st parameter is the name, this is the name that you will use on the pip.

2nd is the version number quite significant also seems that it can't update to PyPI if the version is the same.

3rd is the author's name ... (sounds like didn't explain)

4th email =|

5th is the description that will show the picture below. 

6th is the long description which will get it from the README.md file.

7th is the format of the long description. not sure got what other type. but here is using markdown.

8th is the URL ... ..... 

9th is the project URLs.........

10th is the classifiers. 

and lastly  "where" is needed to the PyPI where to find the packages.


After that create a file called README.md can be another name but normally we call this, with the content as below.

# GEOMETRIC API 
Python Geometric Place latitude and longitude

Currently, only will have one function which are convert address to lat lng


You just need call the function as the following:

TEMPORARY EMPTY


The next step is to add pyproject.toml

[build-system]

requires = ["setuptools", "wheel"]

build-backend = "setuptools.build_meta"


After this you can build and upload the package to PyPI
1) install the require build tools:
    pip install build twine
2) Build the package:
    python -m build
3) Upload the package to PyPI
    twine upload dist/*

Lastly you can install and test the package locally.

pip install geometric-open-street-map-api



from geometric_api.geolocation import GeometricAPI

latlng = GeometricAPI.address_to_latlng("1600 Amphitheatre Parkway, Mountain View, CA")
print(f"Latitude, Longitude: {latlng}")

Now, your package is live on PyPI and ready to be used! 


Comments

Popular posts from this blog

Reading and Writing Operation of SRAM

Reading & Writing Operation of DRAM

Method to Convert from Stream to Json C#