File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,13 +62,13 @@ TODO: This will be replaced with a interactive CSS element that walks users thro
62
62
The content in this tutorial series is beginner friendly and assumes
63
63
that you have not created a Python package before. However, the
64
64
content will still be valuable if you are interested in better
65
- understand the steps for creating a Python package.
65
+ understanding the steps involved in creating a Python package.
66
66
67
67
<!-- it might be interesting to make the above graphic a css
68
68
set of blocks that are colored. then you could hover over each on to get to the lesson of choice. this would make it easier to also
69
69
customize each page with that block at the top -->
70
70
71
- In this series you will learn about the core elements that you need to publish your package to PyPI.
71
+ In this series you will learn about the core elements that you need to publish your package to the [ Python Package Index ( PyPI) ] ( https://pypi.org/ ) .
72
72
73
73
In the second series, you will learn about infrastructure and documentation needed to support package maintenance.
74
74
@@ -104,7 +104,7 @@ functions, classes and methods that are organized together in a directory.
104
104
Packages allow you to group and structure your Python code, making it easier
105
105
to manage and reuse code across different projects.
106
106
107
- A package is installable which means that you can add the functionality within
107
+ A package is installable, which means that you can add the functionality within
108
108
the package code to any Python environment and import that functionality like
109
109
you would import numpy or matplotlib.
110
110
You can’t perform that action at this time.
0 commit comments