File: PKG-INFO

package info (click to toggle)
python-morris 1.2-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 260 kB
  • sloc: python: 378; makefile: 149; sh: 4
file content (85 lines) | stat: -rw-r--r-- 3,225 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Metadata-Version: 1.1
Name: morris
Version: 1.2
Summary: Morris is an announcement (signal/event) system for Python
Home-page: https://github.com/zyga/morris
Author: Zygmunt Krynicki
Author-email: me@zygoon.pl
License: LGPLv3
Description: =========================================================
        Morris - an announcement (signal/event) system for Python
        =========================================================
        
        .. image:: https://badge.fury.io/py/morris.png
            :target: http://badge.fury.io/py/morris
        
        .. image:: https://travis-ci.org/zyga/morris.png?branch=master
                :target: https://travis-ci.org/zyga/morris
        
        .. image:: https://pypip.in/d/morris/badge.png
                :target: https://pypi.python.org/pypi/morris
        
        Features
        ========
        
        * Free software: LGPLv3 license
        * Documentation: https://morris.readthedocs.org.
        * Create signals with a simple decorator :class:`morris.signal`
        * Send signals by calling the decorated method or function
        * Connect to and disconnect from signals with :meth:`morris.signal.connect()`
          and :meth:`morris.signal.disconnect()`.
        * Test your code with :meth:`morris.SignalTestCase.watchSignal()`,
          :meth:`morris.SignalTestCase.assertSignalFired()`,
          :meth:`morris.SignalTestCase.assertSignalNotFired()`
          and :meth:`morris.SignalTestCase.assertSignalOrdering()`
        
        
        
        
        
        History
        =======
        
        1.2 (2015-02-030
        ----------------
        * Merge backwards compatibility features for Plainbox migration.
          (signal_name, SignalInterceptorMixIn)
        * Fix a bug in signal.__repr__()
        * Document internals better
        
        1.1 (2015-02-02)
        ----------------
        
        * Merge ``Signal`` and ``signal`` into one class.
        * Make ``Signal`` an alias of ``signal``.
        * Make ``Signal.define`` an alias of ``signal``.
        * Fix signal support on standalone functions
          (https://github.com/zyga/morris/issues/1)
        * Add more documentation and tests
        * Enable travis-ci.org integration
        
        1.0 (2014-09-21)
        ----------------
        
        * First release on PyPI.
        
        
        2012-2014
        ---------
        
        * Released on PyPI as a part of plainbox as ``plainbox.impl.signal``
        
Keywords: morris signal event pub/sub
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy