File: control

package info (click to toggle)
python-svgelements 1.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 764 kB
  • sloc: python: 11,859; sh: 6; makefile: 3
file content (52 lines) | stat: -rw-r--r-- 2,367 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Source: python-svgelements
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 Agathe Porte <debian@microjoe.org>,
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-numpy,
 python3-pil,
 python3-scipy,
 python3-setuptools,
Standards-Version: 4.6.2
Homepage: https://github.com/meerk40t/svgelements
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-svgelements
Vcs-Git: https://salsa.debian.org/python-team/packages/python-svgelements.git
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-python

Package: python3-svgelements
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: high fidelity SVG parsing and geometric rendering Python library
 The goal is to successfully and correctly process SVG for use with any scripts
 that may need or want to use SVG files as geometric data.
 .
 This is both facilitated by, and results in, very useful elements within the
 SVG spec: Path, Matrix, Angle, Length, Color, Point and other SVG and CSS
 Elements. The SVG spec defines a variety of elements which generally
 interoperate. In order to have a robust experience with SVGs one must be able
 to correctly deal with the parsing and interactions of these elements.
 .
 This project began as part of meerK40t which does SVG loading of files for
 laser cutting. It attempts to more fully map out the SVG specification,
 objects, and paths, while remaining easy to use and largely backwards
 compatible. These elements are quite useful in their own right. For example,
 the zooming and panning within meerK40t is done using the SVG matrix which
 more robust than the wxPython one. Internal console commands within meerK40t
 allows specifying robustly parsed angles of rotation, colors of objects, and
 naively uses the Path() and SVGImage objects. The ability to have these
 robustly manipulated with affine transformations provides considerable
 utility. There is significant utility in the interactions between these
 objects, however if one just want to robustly parse some SVG and convert the
 data to their own structures that is entirely reasonable.
 .
 Without robust SVG parsing one'll find repeated edge cases of some svg files
 that do not parse correctly. svgelements aims to avoid those pitfalls with
 robust adherence to the SVG spec.