damapper 1.7.11a1__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.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: damapper
3
+ Version: 1.7.11a1
4
+ Summary: DaMapper as a standalone application.
5
+ License: Apache-2.0
6
+ Keywords: damapper,standalone
7
+ Author: Garbade, Marc
8
+ Author-email: marc.garbade@dlr.de
9
+ Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 2
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.5
17
+ Classifier: Programming Language :: Python :: 3.6
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
26
+ Classifier: Topic :: Scientific/Engineering
27
+ Requires-Dist: dam-frontend ; (python_version == "2.7" or python_version >= "3.5") and python_version < "4.0" and platform_system == "Windows"
28
+ Requires-Dist: dam-python ; python_version >= "3.6" and python_version < "4.0"
29
+ Project-URL: Repository, https://gitlab.com/dlr-sy/damapper
@@ -0,0 +1,57 @@
1
+ # TOML file to establish DaMapper as standalone application.
2
+ #
3
+ # @note: TOML file
4
+ # Created on 19.03.2024
5
+ #
6
+ # @version: 1.0
7
+ # ----------------------------------------------------------------------------------------------
8
+ # @requires:
9
+ # -
10
+ #
11
+ # @change:
12
+ # -
13
+ #
14
+ # @author: garb_ma [DLR-SY,STM Braunschweig]
15
+ # ----------------------------------------------------------------------------------------------
16
+ [build-system]
17
+ requires = ["poetry-core>=1.0.0"]
18
+ build-backend = "poetry.core.masonry.api"
19
+
20
+ [tool.poetry]
21
+ name = "damapper"
22
+ version = "1.7.11a1"
23
+ description = "DaMapper as a standalone application."
24
+ authors = ["Garbade, Marc <marc.garbade@dlr.de>",
25
+ "Matthias, Wild <mwild@quazar.de>"]
26
+ license = "Apache-2.0"
27
+ packages = [{include="damapper", from="src"}]
28
+ repository = "https://gitlab.com/dlr-sy/damapper"
29
+ keywords = ["damapper","standalone"]
30
+ classifiers = [
31
+ "Development Status :: 3 - Alpha",
32
+ "Topic :: Scientific/Engineering",
33
+ "Programming Language :: Python :: 2",
34
+ "Programming Language :: Python :: 3",
35
+ "License :: OSI Approved :: Apache Software License",
36
+ "Operating System :: OS Independent"
37
+ ]
38
+
39
+ [[tool.poetry.source]]
40
+ name = "PyPI"
41
+ priority = "primary"
42
+
43
+ [[tool.poetry.source]]
44
+ name = "dlr-sy"
45
+ url = "https://gitlab.dlr.de/api/v4/groups/541/-/packages/pypi/simple"
46
+ priority = "supplemental"
47
+
48
+ [tool.poetry.dependencies]
49
+ python = "~2.7 || ^3.5"
50
+ dam-python = [{version = "*", python = "^3.6"}]
51
+ dam-frontend = [{version = "*", python = "~2.7 || ^3.5", markers = "platform_system=='Windows'"}]
52
+
53
+ # Additional dependencies for development
54
+ [tool.poetry.group.dev.dependencies]
55
+ pyx-poetry = [{version = ">=1.28", python="^3.10"}]
56
+ pyx-core = [{version = ">=1.28", python = "~2.7 || ^3.5,<3.9"},
57
+ {git = "https://gitlab.com/dlr-sy/pyxmake", develop=true, python="^3.9"}]
@@ -0,0 +1,37 @@
1
+ # -*- coding: utf-8 -*-
2
+ # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3
+ # DaMapper %
4
+ # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5
+ """
6
+ DaMapper is a standalone application written in C++ with an optional
7
+ python interface to extract damage pattern from US scans and export
8
+ them as XML or IGES files.
9
+
10
+ @version: 1.7.1
11
+ ----------------------------------------------------------------------------------------------
12
+ @requires:
13
+ -
14
+
15
+ @change:
16
+ -
17
+
18
+ @author: garb_ma [DLR-FA,STM Braunschweig]
19
+ ----------------------------------------------------------------------------------------------
20
+ """
21
+
22
+ ## @package DaMapper
23
+ # DaMapper package for US damage segmentation and mapping utilities
24
+ ## @authors
25
+ # Marc Garbade
26
+ ## @date
27
+ # 19.03.2024
28
+ ## @par Notes/Changes
29
+ # - Added documentation // mg 19.03.2024
30
+
31
+ try:
32
+ from DaMapperPy import *
33
+ except ImportError:
34
+ pass
35
+
36
+ if __name__ == '__main__':
37
+ pass