xml-utils 1.22.2__tar.gz → 1.23.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xml_utils-1.22.2 → xml_utils-1.23.1}/PKG-INFO +1 -1
- xml_utils-1.23.1/requirements.txt +2 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/setup.py +2 -3
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xpath/test_unit.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_flattener/tests_unit.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_hash/tests_unit.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_help_methods.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_annotation.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_appinfo.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_attribute.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_namespaces.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_output.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_xml_entities.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/tests_unit_xpath.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/commons/constants.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/commons/exceptions.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/html_tree/parser.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/resolvers/default_uri_resolver.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/validation.py +1 -1
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/xerces/client.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/xerces/server.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xpath.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_flattener/xsd_flattener.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_flattener/xsd_flattener_url.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_hash/xsd_hash.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/annotation.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/appinfo.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/attribute.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/namespaces.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/xml_entities.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/xpath.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/xsd_tree.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_types/xsd_types.py +1 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils.egg-info/PKG-INFO +1 -1
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils.egg-info/requires.txt +2 -2
- xml_utils-1.22.2/requirements.txt +0 -2
- {xml_utils-1.22.2 → xml_utils-1.23.1}/LICENSE.md +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/MANIFEST.in +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/README.rst +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/pyproject.toml +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/setup.cfg +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/html_tree/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xml_validation/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xpath/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_flattener/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_hash/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_tree/operations/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/tests/xsd_types/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/commons/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/html_tree/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/resolvers/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xml_validation/xerces/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_flattener/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_hash/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_tree/operations/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils/xsd_types/__init__.py +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils.egg-info/SOURCES.txt +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils.egg-info/dependency_links.txt +0 -0
- {xml_utils-1.22.2 → xml_utils-1.23.1}/xml_utils.egg-info/top_level.txt +0 -0
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
"""
|
|
2
|
-
"""
|
|
1
|
+
"""Setup xml utils"""
|
|
3
2
|
|
|
4
3
|
from os import chdir, pardir
|
|
5
4
|
from os.path import join, exists, dirname, normpath, abspath
|
|
@@ -26,7 +25,7 @@ chdir(normpath(join(abspath(__file__), pardir)))
|
|
|
26
25
|
|
|
27
26
|
setup(
|
|
28
27
|
name="xml_utils",
|
|
29
|
-
version="1.
|
|
28
|
+
version="1.23.1",
|
|
30
29
|
description="XML utils for the curator core project",
|
|
31
30
|
long_description=long_desc,
|
|
32
31
|
author="NIST IT Lab",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
"""
|
|
2
|
-
"""
|
|
1
|
+
"""All constants needed for xml operation, can be called outside of this package"""
|
|
3
2
|
|
|
4
3
|
XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace"
|
|
5
4
|
XSL_NAMESPACE = "http://www.w3.org/1999/XSL/Transform"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|