forked from Shoobx/xmldiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (65 loc) · 1.61 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
[metadata]
name = xmldiff
version = 2.6.4.dev0
description = Creates diffs of XML files
long_description = file: README.rst, CHANGES.rst
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Topic :: Text Processing :: Markup :: XML
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: PyPy
keywords = xml, html, diff
author = Lennart Regebro
author_email = [email protected]
url = https://github.com/Shoobx/xmldiff
license = MIT
project_urls =
Source Code = https://github.com/Shoobx/xmldiff
[options]
python_requires = >=3.7
zip_safe = True
include_package_data = True
packages = find:
package_dir =
= .
install_requires =
setuptools
lxml>=3.1.0
[options.packages.find]
where = .
exclude =
doc
tests
[options.extras_require]
devenv =
black
coverage
flake8
zest.releaser[recommended]
[options.entry_points]
console_scripts =
xmldiff = xmldiff.main:diff_command
xmlpatch = xmldiff.main:patch_command
[flake8]
max-line-length=120
exclude =
xmldiff/*diff_match_patch*.py
[tool:pytest]
testpaths =
tests
[check-manifest]
ignore =
.pre-commit-config.yaml
[zest.releaser]
create-wheel = yes