Skip to content

Commit 0301e08

Browse files
Update 1_intoduction_python_packaging.md
1 parent fd89794 commit 0301e08

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

episodes/1_intoduction_python_packaging.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,22 @@ Standardisation: Packaging is the established method of distributing code via re
3939
Metadata: Packages include project-specific metadata, which is essential for end users.
4040

4141
## Steps to create a Python Package :
42+
4243
<img width="1298" height="250" alt="image" src="https://github.com/user-attachments/assets/be6f94ec-599b-4a1e-bd5b-63c2dfad720c" />
4344

4445

45-
## What may be packaged ?
46+
## What may be packaged ?
4647

47-
Any .py files (modules) or directories with __init__.py (packages) can be packaged..
48+
Any .py files (modules) or directories with __init__.py (packages) can be packaged..
4849

49-
## What is PyPI
50+
## What is PyPI
5051

51-
PyPI is the repository where all released Python packages are made available for end users. You may explore it here: [PyPI](https://pypi.org/).
52+
PyPI is the repository where all released Python packages are made available for end users. You may explore it here: [PyPI](https://pypi.org/).
5253
There is also [TestPyPI](https://test.pypi.org/), a repository which allows us to experiment with distribution tools and procedures without affecting the live PyPI. In this course, we will publish our package to TestPyPI.
5354

54-
## What is a Build ?
55+
## What is a Build ?
5556

56-
A build is the process by which your project’s source code is transformed into a distributable format. These build artefacts can then be installed using tools such as `pip`.
57+
A build is the process by which your project’s source code is transformed into a distributable format. These build artefacts can then be installed using tools such as `pip`.
5758
A build may be created using the command in the terminal :
5859
```bash
5960
python -m build

0 commit comments

Comments
 (0)