You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name = "pyospackage_gh_user_name"# rename this if you plan to publish to test PyPI
321
321
# Here you add the package version manually.
322
322
# You will learn how to setup dynamic versioning in a followup tutorial.
323
-
version="1.1"
323
+
version = "1.1"
324
324
325
325
```
326
326
@@ -331,7 +331,7 @@ version using git tags in the version and release your package lesson. <ADD LINK
331
331
:::{admonition} The bare minimum needed in a pyproject.toml file
332
332
:class: tip
333
333
334
-
The core basic information that you need in a `pyproject.toml` file in order to publish on PyPI is your **package's name** and the **version**. However, we suggest that you flesh out your metadata early on in the `pyproject.toml` file.
334
+
The core information that you need in a `pyproject.toml` file in order to publish on PyPI is your **package's name** and the **version**. However, we suggest that you flesh out your metadata early on in the `pyproject.toml` file.
335
335
336
336
Once you have your project metadata in the pyproject.toml file, you will
337
337
rarely update it. In the next lesson you’ll add more metadata and structure to this file.
0 commit comments