summaryrefslogtreecommitdiff
path: root/python/entrypoints/README
diff options
context:
space:
mode:
authorBenjamin Trigona-Harany <slackbuilds@jaxartes.net>2017-01-24 21:44:47 +0000
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2017-01-28 07:38:02 +0700
commit88e26a9d850073317b213beda47e5da8b881ccb0 (patch)
tree77691ac87eae3371c909afcba1ed08265cd20e84 /python/entrypoints/README
parent866186bcf6266eef7dd5209abc4818a0399d8c7d (diff)
downloadslackbuilds-88e26a9d850073317b213beda47e5da8b881ccb0.tar.gz
python/entrypoints: Added (Discover & load entry points).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/entrypoints/README')
-rw-r--r--python/entrypoints/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/entrypoints/README b/python/entrypoints/README
new file mode 100644
index 0000000000..aa2e1c23f2
--- /dev/null
+++ b/python/entrypoints/README
@@ -0,0 +1,4 @@
+The entrypoints module contains functions to find and load entry points. Entry
+points are a way for Python packages to advertise objects with some common
+interface. The most common examples are console_scripts entry points, which
+define shell commands by identifying a Python function to run.