forked from Kozea/CairoSVG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
97 lines (89 loc) · 1.81 KB
/
setup.cfg
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
91
92
93
94
95
96
97
[metadata]
name = CairoSVG
url = http://www.cairosvg.org/
version = file: cairosvg/VERSION
license = file: LICENSE
description = A Simple SVG Converter based on Cairo
long_description = file: README.rst, NEWS.rst
long_description_content_type = text/x-rst
author = Guillaume Ayoub
author_email = community@kozea.fr
platforms =
Linux
macOS
Windows
keywords =
svg
converter
cairo
pdf
png
postscript
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Multimedia :: Graphics :: Graphics Conversion
[options]
packages = cairosvg
setup_requires =
pytest-runner
setuptools
install_requires =
cairocffi
cssselect2
defusedxml
pillow
tinycss2
tests_require =
pytest-cov
pytest-flake8
pytest-isort
pytest-runner
python_requires = >= 3.4
[options.entry_points]
console-scripts =
cairosvg = cairosvg.__main__:main
[options.package_data]
cairosvg = VERSION
[options.extras_require]
doc =
sphinx
sphinx_rtd_theme
test =
pytest-runner
pytest-cov
pytest-flake8
pytest-isort
[bdist_wheel]
python-tag = py3
[aliases]
test = pytest
[tool:pytest]
addopts =
--flake8
--isort
--cov=cairosvg
--cov=test_non_regression.test_non_regression
--cov=test_non_regression.test_helpers
--cov-branch
--ignore=test_regression/cairosvg_reference
norecursedirs =
build
cairosvg_reference
dist
venv
.cache
.eggs
.git
*.egg-info
[isort]
default_section = THIRDPARTY
multi_line_output = 4