otlmow-template 0.7__tar.gz → 0.8__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.
- {otlmow_template-0.7 → otlmow_template-0.8}/PKG-INFO +2 -2
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template/SubsetTemplateCreator.py +5 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template.egg-info/PKG-INFO +2 -2
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template.egg-info/requires.txt +1 -1
- {otlmow_template-0.7 → otlmow_template-0.8}/pyproject.toml +2 -2
- {otlmow_template-0.7 → otlmow_template-0.8}/LICENSE +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/README.md +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template/CsvTemplateCreator.py +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template/ExcelTemplateCreator.py +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template/Exceptions/MissingTypeUriException.py +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template/__init__.py +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template.egg-info/SOURCES.txt +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template.egg-info/dependency_links.txt +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template.egg-info/top_level.txt +0 -0
- {otlmow_template-0.7 → otlmow_template-0.8}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: otlmow_template
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8
|
|
4
4
|
Author-email: David Vlaminck <david.vlaminck@mow.vlaanderen.be>, Jasper Berton <jasperberton1@telenet.be>
|
|
5
5
|
License: GNU GENERAL PUBLIC LICENSE
|
|
6
6
|
Version 3, 29 June 2007
|
|
@@ -697,7 +697,7 @@ Classifier: Topic :: Software Development :: Quality Assurance
|
|
|
697
697
|
Requires-Python: >=3.9
|
|
698
698
|
Description-Content-Type: text/markdown
|
|
699
699
|
License-File: LICENSE
|
|
700
|
-
Requires-Dist: otlmow-converter>=1.
|
|
700
|
+
Requires-Dist: otlmow-converter>=1.7
|
|
701
701
|
Requires-Dist: otlmow-modelbuilder>=0.24
|
|
702
702
|
|
|
703
703
|
# OTLMOW-Template
|
|
@@ -95,6 +95,11 @@ class SubsetTemplateCreator:
|
|
|
95
95
|
for attribute_object in attributen:
|
|
96
96
|
attr = getattr(instance, '_' + attribute_object.name)
|
|
97
97
|
attr.fill_with_dummy_data()
|
|
98
|
+
try:
|
|
99
|
+
geo_attr = getattr(instance, '_geometry')
|
|
100
|
+
geo_attr.fill_with_dummy_data()
|
|
101
|
+
except AttributeError:
|
|
102
|
+
pass
|
|
98
103
|
otl_objects.append(instance)
|
|
99
104
|
|
|
100
105
|
DotnotationHelper.clear_list_of_list_attributes(instance)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: otlmow_template
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8
|
|
4
4
|
Author-email: David Vlaminck <david.vlaminck@mow.vlaanderen.be>, Jasper Berton <jasperberton1@telenet.be>
|
|
5
5
|
License: GNU GENERAL PUBLIC LICENSE
|
|
6
6
|
Version 3, 29 June 2007
|
|
@@ -697,7 +697,7 @@ Classifier: Topic :: Software Development :: Quality Assurance
|
|
|
697
697
|
Requires-Python: >=3.9
|
|
698
698
|
Description-Content-Type: text/markdown
|
|
699
699
|
License-File: LICENSE
|
|
700
|
-
Requires-Dist: otlmow-converter>=1.
|
|
700
|
+
Requires-Dist: otlmow-converter>=1.7
|
|
701
701
|
Requires-Dist: otlmow-modelbuilder>=0.24
|
|
702
702
|
|
|
703
703
|
# OTLMOW-Template
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
otlmow-converter>=1.
|
|
1
|
+
otlmow-converter>=1.7
|
|
2
2
|
otlmow-modelbuilder>=0.24
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "otlmow_template"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.8"
|
|
8
8
|
authors = [{name = "David Vlaminck", email = "david.vlaminck@mow.vlaanderen.be"},
|
|
9
9
|
{name = "Jasper Berton", email = "jasperberton1@telenet.be"},]
|
|
10
10
|
readme = "README.md"
|
|
@@ -29,7 +29,7 @@ classifiers = [
|
|
|
29
29
|
]
|
|
30
30
|
requires-python = ">=3.9"
|
|
31
31
|
dependencies = [
|
|
32
|
-
'otlmow-converter >= 1.
|
|
32
|
+
'otlmow-converter >= 1.7',
|
|
33
33
|
'otlmow-modelbuilder >= 0.24',
|
|
34
34
|
]
|
|
35
35
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{otlmow_template-0.7 → otlmow_template-0.8}/otlmow_template/Exceptions/MissingTypeUriException.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|