We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a987f30 commit ab9672eCopy full SHA for ab9672e
1 file changed
modeled/__init__.py
@@ -20,21 +20,13 @@
20
.. moduleauthor:: Stefan Zimmermann <zimmermann.code@gmail.com>
21
"""
22
23
-from zetup import find_zetup_config
24
-
25
26
-zfg = find_zetup_config(__name__)
27
28
-__distribution__ = zfg.DISTRIBUTION.find(__path__[0])
29
-__description__ = zfg.DESCRIPTION
30
31
-__version__ = zfg.VERSION
32
-__requires__ = zfg.REQUIRES.checked
+import zetup
33
+zetup.annotate(__name__)
34
35
import sys
36
37
-from path import path as Path
+from path import Path
38
39
40
for path in (Path(p) / 'modeled' for p in sys.path):
0 commit comments