File: setup.cfg

package info (click to toggle)
python-svglib 1.4.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 328 kB
  • sloc: python: 2,717; sh: 6; makefile: 3
file content (63 lines) | stat: -rw-r--r-- 1,587 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
53
54
55
56
57
58
59
60
61
62
63
[metadata]
name = svglib
version = 1.4.1
description = A pure-Python library for reading and converting SVG
long_description = file: README.rst
keywords =
    SVG
    PDF
    reportlab
    conversion
    graphics
url = https://github.com/deeplook/svglib
author = Dinu Gherman
author_email = gherman@darwin.in-berlin.de
license = LGPL 3
license_file = LICENSE.txt
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: Console
    Intended Audience :: End Users/Desktop
    Intended Audience :: Developers
    License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
    Operating System :: MacOS :: MacOS X
    Operating System :: Microsoft :: Windows
    Operating System :: POSIX
    Natural Language :: English
    Programming Language :: Python
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3 :: Only
    Topic :: Documentation
    Topic :: Utilities
    Topic :: Printing
    Topic :: Multimedia :: Graphics :: Graphics Conversion
    Topic :: Software Development :: Libraries :: Python Modules
    Topic :: Text Processing :: Markup :: XML

[options]
python_requires = >=3.7
install_requires =
    reportlab
    lxml
    tinycss2>=1.1.0
    cssselect2>=0.5.0
tests_require =
    pytest
packages =
    svglib
package_dir =
    svglib = svglib
scripts =
    scripts/svg2pdf

[options.data_files]
share/man/man1 = svg2pdf.1

[aliases]
test = pytest

[flake8]
max-line-length = 99