aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2023-09-12 09:39:19 +0200
committeralex <alex@pdp7.net>2023-09-12 09:39:19 +0200
commitb4da0ea69780b1540ecb6f67b89109d0cde8ddfa (patch)
tree19999ae417e31ebf55cfb291e7f9f0b1a374271b
parent508ce8e7d735026650d08dfd946963b26d30c1af (diff)
Link to project setup article
-rw-r--r--programming/python/dependency_handling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/programming/python/dependency_handling.md b/programming/python/dependency_handling.md
index 02ee5b14..3f1db103 100644
--- a/programming/python/dependency_handling.md
+++ b/programming/python/dependency_handling.md
@@ -5,7 +5,7 @@ Specifically, if you have seen files named `requirements.txt` and have wondered
If you are starting to write Python software and you are looking at an introductory text about distributing your software and using dependencies, I would recommend you to skip directly to using the "new generation" Python packaging tools.
This way, you can avoid most of the complexities in this post.
-You can also check out the [Python Packaging User Guide](https://packaging.python.org/en/latest/).
+You can also check out the [Python Packaging User Guide](https://packaging.python.org/en/latest/) and [my own prescriptive project setup recommendations](project_setup.md).
Most programs can use third-party libraries to implement parts of their functionality without implementing everything from scratch.