-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
45 lines (41 loc) · 1.12 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
[metadata]
version = 0.10.0
name = svgcheck
description = Verify that an svg file is compliant with the RFC standards.
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
keywords = svg, validation, rfc
author = IETF Tools Team
license = BSD-3-Clause
url = https://github.com/ietf-tools/svgcheck
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Other Audience
Topic :: Text Processing
Topic :: Text Processing :: Markup :: XML
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = svgcheck, svgcheck.Results, svgcheck.Tests, svgcheck.Tests.cache_saved
python_requires = >=3.8
install_requires =
lxml>=5.3.0
xml2rfc>=3.24.0
include_package_data = True
tests_require =
pycodestyle
pyflakes>=0.8.1
zip_safe = False
[options.entry_points]
console_scripts =
svgcheck = svgcheck.run:main
[options.package_data]
* =
pycode.cfg
Results/*
Tests/*.*
Tests/cache_saved/*.*