flareio-cli 0.2.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,12 @@
1
+ Metadata-Version: 2.3
2
+ Name: flareio-cli
3
+ Version: 0.2.2
4
+ Summary: CLI interface for the flare.io API
5
+ Author: Alexandre Viau
6
+ Author-email: Alexandre Viau <alexandre.viau@flare.io>
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # flareio-cli
11
+
12
+ CLI interface for the [flare.io API](https://api.docs.flare.io/).
@@ -0,0 +1,3 @@
1
+ # flareio-cli
2
+
3
+ CLI interface for the [flare.io API](https://api.docs.flare.io/).
@@ -0,0 +1,23 @@
1
+ [project]
2
+ name = "flareio-cli"
3
+ version = "0.2.2"
4
+ description = "CLI interface for the flare.io API"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Alexandre Viau", email = "alexandre.viau@flare.io" }
8
+ ]
9
+ requires-python = ">=3.10"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ flareio = "flareio_cli:cli.main"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.9.28,<0.10.0"]
17
+ build-backend = "uv_build"
18
+
19
+ [dependency-groups]
20
+ dev = [
21
+ "pytest>=9.0.2",
22
+ "ty>=0.0.15",
23
+ ]
File without changes
@@ -0,0 +1,5 @@
1
+ def main() -> None:
2
+ print("Hello, World!")
3
+
4
+ if __name__ == "__main__":
5
+ main()
File without changes
@@ -0,0 +1,2 @@
1
+ def test_hello() -> None:
2
+ assert "hello" == "hello"