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"
Comments
Post a Comment