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 86 87 88 89 90
|
Source: python-automaton
Section: python
Priority: optional
Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
Uploaders: Thomas Goirand <zigo@debian.org>,
Corey Bryant <corey.bryant@canonical.com>,
Build-Depends: debhelper (>= 9),
dh-python,
openstack-pkg-tools,
python-all,
python-pbr (>= 1.8),
python-setuptools,
python-sphinx,
python3-all,
python3-pbr (>= 1.8),
python3-setuptools,
Build-Depends-Indep: python-coverage,
python-debtcollector (>= 1.2.0),
python-hacking,
python-oslosphinx (>= 2.5.0),
python-oslotest (>= 1.10.0),
python-prettytable,
python-six (>= 1.9.0),
python-testscenarios,
python-testtools (>= 1.4.0),
python3-debtcollector (>= 1.2.0),
python3-oslotest (>= 1.10.0),
python3-prettytable,
python3-six (>= 1.9.0),
python3-testscenarios,
python3-testtools (>= 1.4.0),
subunit (>= 1.1.0),
testrepository,
Standards-Version: 3.9.7
Vcs-Browser: https://anonscm.debian.org/gitweb/?p=openstack/python-automaton.git
Vcs-Git: https://anonscm.debian.org/git/openstack/python-automaton.git
Homepage: https://github.com/openstack/automaton
Package: python-automaton
Architecture: all
Depends: python-debtcollector (>= 1.2.0),
python-pbr (>= 1.8),
python-prettytable,
python-six (>= 1.9.0),
${misc:Depends},
${python:Depends},
Suggests: python-automaton-doc,
Description: friendly state machines - Python 2.7
Automaton is a friendly state machines for Python. This state machine can be
used to automatically run a given set of transitions and states in response to
events (either from callbacks or from generator/iterator send() values, see
PEP 342). On each triggered event, a on_enter and on_exit callback can also be
provided which will be called to perform some type of action on leaving a
prior state and before entering a new state.
.
This package contains the Python 2.7 module.
Package: python3-automaton
Architecture: all
Depends: python3-debtcollector (>= 1.2.0),
python3-pbr (>= 1.8),
python3-prettytable,
python3-six (>= 1.9.0),
${misc:Depends},
${python3:Depends},
Suggests: python-automaton-doc,
Description: friendly state machines - Python 3.x
Automaton is a friendly state machines for Python. This state machine can be
used to automatically run a given set of transitions and states in response to
events (either from callbacks or from generator/iterator send() values, see
PEP 342). On each triggered event, a on_enter and on_exit callback can also be
provided which will be called to perform some type of action on leaving a
prior state and before entering a new state.
.
This package contains the Python 3.x module.
Package: python-automaton-doc
Section: doc
Architecture: all
Depends: ${misc:Depends},
${sphinxdoc:Depends},
Description: friendly state machines - doc
Automaton is a friendly state machines for Python. This state machine can be
used to automatically run a given set of transitions and states in response to
events (either from callbacks or from generator/iterator send() values, see
PEP 342). On each triggered event, a on_enter and on_exit callback can also be
provided which will be called to perform some type of action on leaving a
prior state and before entering a new state.
.
This package contains the documentation.
|