File: control

package info (click to toggle)
obsub 0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 160 kB
  • sloc: python: 350; makefile: 3; sh: 2
file content (25 lines) | stat: -rw-r--r-- 973 bytes parent folder | download
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
Source: obsub
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Free Ekanayaka <freee@debian.org>
Section: python
Priority: optional
Build-Depends: dh-python,
               debhelper-compat (= 13),
               python3-all,
               python3-setuptools,
               python3-nose,
Standards-Version: 3.9.8
Homepage: https://github.com/aepsil0n/obsub
Vcs-Browser: https://salsa.debian.org/python-team/packages/obsub
Vcs-Git: https://salsa.debian.org/python-team/packages/obsub.git
Testsuite: autopkgtest-pkg-python

Package: python3-obsub
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Python 3.x module that implements the observer pattern via a decorator
 The @event decorator makes functions or methods "observable". Consuming code
 can subscribe callbacks to these decorated callables, and the callbacks will be
 triggered every time the callables are invoked.
 .
 This package sports the Python 3 module.