diff options
| author | Alex Corcoles <alex@pdp7.net> | 2022-10-28 23:27:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-28 23:27:26 +0200 |
| commit | 6836809c114425b7628ab12dc333fad87b0e8217 (patch) | |
| tree | a214e1d93a3b65fba846125e137750fba7c09f63 /programming/python | |
| parent | 297319831cbf845a8f058094eb0a6700f56fc016 (diff) | |
Try to be more specific about intended audience and purpose
Diffstat (limited to 'programming/python')
| -rw-r--r-- | programming/python/dependency_handling.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/programming/python/dependency_handling.md b/programming/python/dependency_handling.md index eba766ff..57e05109 100644 --- a/programming/python/dependency_handling.md +++ b/programming/python/dependency_handling.md @@ -1,4 +1,10 @@ -# A brief explanation of Python dependency management +# Some brief notes about Python dependency management + +This article is mostly written for people who have already used Setuptools and have faced issues derived from its "limitations". +Specifically, if you have seen files named `requirements.txt` and have wondered how they work, what problem do they solve, and if they are something you should investigate, I hope you find this article interesting. + +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. Most programs can use third-party libraries to implement parts of their functionality without implementing everything from scratch. |
