hiveio-wax 0.1.0__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,21 @@
1
+ Metadata-Version: 2.3
2
+ Name: hiveio-wax
3
+ Version: 0.1.0
4
+ Summary: Prosta biblioteka przykład (Poetry)
5
+ License: MIT
6
+ Keywords: example,hello
7
+ Author: kmochocki
8
+ Author-email: kmochocki@syncad.com
9
+ Requires-Python: >=3.10
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Project-URL: Repository, https://gitlab.syncad.com/hive/wax
18
+ Description-Content-Type: text/markdown
19
+
20
+ # my super project
21
+
@@ -0,0 +1 @@
1
+ # my super project
@@ -0,0 +1,27 @@
1
+ [tool.poetry]
2
+ name = "hiveio-wax"
3
+ version = "0.1.0"
4
+ description = "Prosta biblioteka przykład (Poetry)"
5
+ authors = ["kmochocki <kmochocki@syncad.com>"]
6
+ readme = "README.md"
7
+ license = "MIT"
8
+ repository = "https://gitlab.syncad.com/hive/wax"
9
+ keywords = ["example", "hello"]
10
+ packages = [
11
+ { include = "wax", from = "." }
12
+ ]
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+
19
+ [tool.poetry.dependencies]
20
+ python = ">=3.10"
21
+
22
+ [tool.poetry.group.dev.dependencies]
23
+ pytest = "^8.0"
24
+
25
+ [build-system]
26
+ requires = ["poetry-core>=1.8.0"]
27
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,3 @@
1
+ from wax.some_file import hello
2
+
3
+ __all__ = ["hello"]
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ print("Hello, world!")