pyx-webservice 1.19.2__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,33 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyx-webservice
3
+ Version: 1.19.2
4
+ Summary: Provides web services from PyXMake using fastapi
5
+ Home-page: https://gitlab.com/dlr-sy/pyxmake
6
+ License: MIT
7
+ Keywords: pyxmake,server,api,backend
8
+ Author: Garbade, Marc
9
+ Author-email: marc.garbade@dlr.de
10
+ Requires-Python: >=3.7,<4.0
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 2
21
+ Classifier: Topic :: Software Development :: Build Tools
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Requires-Dist: pyx-core ; python_version >= "3.7" and python_version < "4.0"
24
+ Project-URL: Changelog, https://gitlab.com/dlr-sy/pyxmake/-/blob/master/CHANGELOG.md
25
+ Project-URL: Documentation, https://gitlab.com/dlr-sy/pyxmake/-/blob/master/README.md
26
+ Project-URL: Repository, https://gitlab.com/dlr-sy/pyxmake
27
+ Description-Content-Type: text/markdown
28
+
29
+ [![doi](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.13352143-red.svg)](https://zenodo.org/records/13352143)
30
+
31
+ # PyXMake
32
+ > This subpackage belongs to [PyXMake](https://gitlab.com/dlr-sy/pyxmake) and provides various web services using [fastapi](https://fastapi.tiangolo.com/) as an optional dependency. It can be installed together with the parent project. However, it is also separately available to ensure backwards compatibility. Please refer to the linked [repository](https://gitlab.com/dlr-sy/pyxmake) for documentation and application examples.
33
+
@@ -0,0 +1,4 @@
1
+ [![doi](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.13352143-red.svg)](https://zenodo.org/records/13352143)
2
+
3
+ # PyXMake
4
+ > This subpackage belongs to [PyXMake](https://gitlab.com/dlr-sy/pyxmake) and provides various web services using [fastapi](https://fastapi.tiangolo.com/) as an optional dependency. It can be installed together with the parent project. However, it is also separately available to ensure backwards compatibility. Please refer to the linked [repository](https://gitlab.com/dlr-sy/pyxmake) for documentation and application examples.
@@ -0,0 +1,60 @@
1
+ # TOML file to establish various webservices for PyXMake using fastapi.
2
+ #
3
+ # @note: TOML file
4
+ # Created on 06.02.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 = "pyx-webservice"
22
+ version = "0.0.0dev"
23
+ description = "Provides web services from PyXMake using fastapi"
24
+ authors = ["Garbade, Marc <marc.garbade@dlr.de>"]
25
+ license = "MIT"
26
+ packages = [{include="PyXMake/API/*.py", from="src"}]
27
+ repository = "https://gitlab.com/dlr-sy/pyxmake"
28
+ documentation = "https://gitlab.com/dlr-sy/pyxmake/-/blob/master/README.md"
29
+ keywords = ["pyxmake","server","api","backend"]
30
+ readme = "README.md"
31
+ classifiers = [
32
+ "Development Status :: 5 - Production/Stable",
33
+ "Topic :: Software Development :: Build Tools",
34
+ "Topic :: Software Development :: Libraries :: Python Modules",
35
+ "Programming Language :: Python :: 2",
36
+ "Programming Language :: Python :: 3",
37
+ "License :: OSI Approved :: MIT License",
38
+ "Operating System :: OS Independent"
39
+ ]
40
+
41
+ [tool.poetry.urls]
42
+ Changelog = "https://gitlab.com/dlr-sy/pyxmake/-/blob/master/CHANGELOG.md"
43
+
44
+ [[tool.poetry.source]]
45
+ name = "PyPI"
46
+ priority = "primary"
47
+
48
+ [[tool.poetry.source]]
49
+ name = "dlr-sy"
50
+ url = "https://gitlab.dlr.de/api/v4/groups/541/-/packages/pypi/simple"
51
+ priority = "supplemental"
52
+
53
+ [tool.poetry.dependencies]
54
+ python = "^3.7"
55
+ pyx-core = [{version = "*", python = "^3.7"}]
56
+
57
+ # All mandatory development dependencies
58
+ [tool.poetry.group.dev.dependencies]
59
+ pyx-poetry = [{version = ">=1.13", python = "~2.7 || ^3.5"}]
60
+ pyx-core = [{git = "https://gitlab.dlr.de/fa_sw/stmlab/PyXMake.git", python="^3.7"}]