Skip to content

Commit 51d0a0d

Browse files
committed
fix: broken link
1 parent e62973e commit 51d0a0d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

package-structure-code/pyproject-toml-python-package-metadata.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
66
what's missing
77
8-
- missing explanation of `requires-python =` in this page -- discussed in slack with pradyun --
9-
108
::: -->
119

1210
:::{admonition} Important pyproject.toml take aways
@@ -21,7 +19,6 @@ what's missing
2119

2220
:::
2321

24-
2522
:::::{todo}
2623

2724
when these are published, remove this todo
@@ -184,10 +181,9 @@ The examples at the bottom of this page contain ...
184181

185182
- **`[project.scripts]` (Entry points):** Entry points are optional. If you have a command line tool that runs a specific script hosted in your package, you may include an entry point to call that script directly at the command line (rather than at the Python shell).
186183

187-
- Here is an example of[ a package that has entry point script](https://github.com/pyOpenSci/update-web-metadata/blob/main/pyproject.toml#L60)s. Notice that there are several core scripts defined in that package that perform sets of tasks. The pyOpenSci is using those scripts to process their metadata.
184+
- Here is an example of[a package that has entry point script](https://github.com/pyOpenSci/pyosMeta/blob/main/pyproject.toml#L60)s. Notice that there are several core scripts defined in that package that perform sets of tasks. The pyOpenSci is using those scripts to process their metadata.
188185
- **Dynamic Fields:** if you have fields that are dynamically populated. One example of this is if you are using scm / version control based version with tools like `setuptooms_scm`, then you might use the dynamic field, such as version (using scm) **dynamic = ["version"]**
189186

190-
191187
## Add dependencies to your pyproject.toml file
192188

193189
The pyproject.toml file can also be used as a replacement for the requirements.txt file which has been traditionally used to store development dependencies such as pytest, code formatters such as Black and documentation tools such as sphinx.

0 commit comments

Comments
 (0)