flareio 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.
flareio-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: flareio
3
+ Version: 0.1.0
4
+ Summary:
5
+ Author: Alexandre Viau
6
+ Author-email: alexandre.viau@flare.io
7
+ Requires-Python: >=3.11,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Description-Content-Type: text/markdown
12
+
13
+ # python-flareio
14
+
@@ -0,0 +1 @@
1
+ # python-flareio
File without changes
@@ -0,0 +1,20 @@
1
+ [tool.poetry]
2
+ name = "flareio"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["Alexandre Viau <alexandre.viau@flare.io>"]
6
+ readme = "README.md"
7
+ packages = [
8
+ { include = "flareio" },
9
+ ]
10
+
11
+ [tool.poetry.dependencies]
12
+ python = "^3.11"
13
+
14
+
15
+ [build-system]
16
+ requires = ["poetry-core"]
17
+ build-backend = "poetry.core.masonry.api"
18
+
19
+ [tool.poetry.group.dev.dependencies]
20
+ pytest = "8.3.2"