From 60017ee06f145130cab3e3df65588f028d16a1f1 Mon Sep 17 00:00:00 2001 From: Roger Pate Date: Thu, 1 Sep 2016 06:09:55 -0400 Subject: [PATCH] add attr docstring (#74) --- src/attr/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/attr/__init__.py b/src/attr/__init__.py index 70e5fbc91649b2..bdf61c9dd9e57f 100644 --- a/src/attr/__init__.py +++ b/src/attr/__init__.py @@ -29,6 +29,7 @@ __title__ = "attrs" __description__ = "Attributes Without Boilerplate" __uri__ = "https://attrs.readthedocs.io/" +__doc__ = __description__ + " <" + __uri__ + ">" __author__ = "Hynek Schlawack" __email__ = "hs@ox.cx"