summaryrefslogtreecommitdiff
path: root/python/traitlets/README
diff options
context:
space:
mode:
authorIsaac Yu <isaacyu1@isaacyu1.com>2022-02-19 00:12:29 -0800
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-19 21:54:39 +0700
commite1c1307467072e58fa410b9fa25c85518f455a43 (patch)
treea993f7afe2ab2de28800d693e13eefd732023048 /python/traitlets/README
parent764d8b770012bb2056212bf327e5c6d0623b8c1c (diff)
downloadslackbuilds-e1c1307467072e58fa410b9fa25c85518f455a43.tar.gz
python/traitlets: Upload traitlets, update for 5.1.1 (+new maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/traitlets/README')
-rw-r--r--python/traitlets/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/python/traitlets/README b/python/traitlets/README
new file mode 100644
index 0000000000..67b73cc20d
--- /dev/null
+++ b/python/traitlets/README
@@ -0,0 +1,12 @@
+Traitlets is a pure Python library enabling:
+
+* the enforcement of strong typing for attributes of Python objects (typed
+ attributes are called "traits")
+* notifications on changes of trait attributes
+* automatic validation and coercion of trait attributes when attempting a
+ change
+
+Its implementation relies on the descriptor pattern.
+
+Traitlets powers the configuration system of IPython and Jupyter and the
+declarative API of IPython interactive widgets.