lib-ordrsp 0.0.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,16 @@
1
+ Metadata-Version: 2.3
2
+ Name: lib-ordrsp
3
+ Version: 0.0.2
4
+ Summary:
5
+ Author: Nathan Blum
6
+ Author-email: n.blum@student.tudelft.nl
7
+ Requires-Python: >=3.10
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Description-Content-Type: text/markdown
14
+
15
+ # lib-orderrsp
16
+
@@ -0,0 +1 @@
1
+ # lib-orderrsp
@@ -0,0 +1,19 @@
1
+ [project]
2
+ name = "lib-ordrsp"
3
+ version = "0.0.2"
4
+ description = ""
5
+ authors = [
6
+ {name = "Nathan Blum",email = "n.blum@student.tudelft.nl"}
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">=3.10"
10
+ dependencies = [
11
+ ]
12
+
13
+ [tool.poetry]
14
+ packages = [{include = "lib_ordrsp", from = "src"}]
15
+
16
+
17
+ [build-system]
18
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
19
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,6 @@
1
+ from .orderrsp import OrderRsp, Order
2
+
3
+ __all__ = [
4
+ 'OrderRsp',
5
+ 'Order'
6
+ ]
@@ -0,0 +1,15 @@
1
+
2
+
3
+ class OrderRsp:
4
+ def __init__(self, uid, adress, message, business, subject, text, pdf):
5
+ self.uid = uid
6
+ self.adress = adress
7
+ self.message = message
8
+ self.business = business
9
+ self.subject = subject
10
+ self.text = text
11
+ self.pdf = pdf
12
+
13
+ class Order:
14
+ def __init__(self):
15
+ self.po_number = None