voltus 0.0.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.
voltus-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: voltus
3
+ Version: 0.0.0
4
+ Summary: A Python client for the Voltus API
5
+ Author: Carlos Tarjano
6
+ Author-email: carlos.t.santos@inesctec.pt
7
+ Requires-Python: >=3.12,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.12
10
+ Classifier: Programming Language :: Python :: 3.13
11
+ Requires-Dist: pandas (>=2.2.3,<3.0.0)
12
+ Requires-Dist: requests (>=2.32.3,<3.0.0)
13
+ Description-Content-Type: text/markdown
14
+
15
+
voltus-0.0.0/README.md ADDED
File without changes
@@ -0,0 +1,16 @@
1
+ [tool.poetry]
2
+ name = "voltus"
3
+ version = "0.0.0"
4
+ description = "A Python client for the Voltus API"
5
+ authors = ["Carlos Tarjano <carlos.t.santos@inesctec.pt>"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.12"
10
+ requests = "^2.32.3"
11
+ pandas = "^2.2.3"
12
+
13
+
14
+ [build-system]
15
+ requires = ["poetry-core"]
16
+ build-backend = "poetry.core.masonry.api"
File without changes