engini-client 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.
@@ -0,0 +1,22 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ .venv/
5
+ venv/
6
+ *.egg-info/
7
+ dist/
8
+ build/
9
+ .pytest_cache/
10
+ .ruff_cache/
11
+ .mypy_cache/
12
+
13
+ # uv
14
+ .uv/
15
+ uv.lock
16
+
17
+ # Secrets (regen.sh / CI may handle tokens)
18
+ .env
19
+ .env.*
20
+
21
+ # OS
22
+ .DS_Store
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: engini-client
3
+ Version: 0.0.0
4
+ Summary: Name reservation for the Engini Public API Python client. Real releases follow.
5
+ Project-URL: Homepage, https://engini.io
6
+ Author: Engini
7
+ License: Proprietary
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # engini-client
12
+
13
+ Name reservation placeholder for the Engini Public API Python client.
14
+ The functional client ships in a later release. See https://engini.io.
@@ -0,0 +1,4 @@
1
+ # engini-client
2
+
3
+ Name reservation placeholder for the Engini Public API Python client.
4
+ The functional client ships in a later release. See https://engini.io.
@@ -0,0 +1,18 @@
1
+ [project]
2
+ name = "engini-client"
3
+ version = "0.0.0"
4
+ description = "Name reservation for the Engini Public API Python client. Real releases follow."
5
+ readme = "README.md"
6
+ requires-python = ">=3.9"
7
+ license = { text = "Proprietary" }
8
+ authors = [{ name = "Engini" }]
9
+
10
+ [project.urls]
11
+ Homepage = "https://engini.io"
12
+
13
+ [build-system]
14
+ requires = ["hatchling"]
15
+ build-backend = "hatchling.build"
16
+
17
+ [tool.hatch.build.targets.wheel]
18
+ packages = ["src/engini_client_placeholder"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.0"