File: control

package info (click to toggle)
pyee 7.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 216 kB
  • sloc: python: 959; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 1,114 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
26
27
28
Source: pyee
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Ethan Ward <ethan.ward@mycroft.ai>
Build-Depends: debhelper-compat (= 12),
               dh-python,
               python3-all,
               python3-mock,
               python3-pytest,
	       python3-pytest-asyncio,
               python3-pytest-runner,
               python3-setuptools,
               python3-twisted,
Standards-Version: 4.5.0
Homepage: https://github.com/jfhbrook/pyee
Vcs-Git: https://salsa.debian.org/python-team/modules/pyee.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/pyee
Testsuite: autopkgtest-pkg-python

Package: python3-pyee
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Python 3 port of node.js's EventEmitter to Python
 This package contains the pyee module for Python 3. pyee supplies an
 EventEmitter object similar to the EventEmitter from node.js. This allows
 developers to register a function to an event, which means that when the event
 is emitted, the function will be called.