engini 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.
- engini-0.0.0/.gitignore +22 -0
- engini-0.0.0/PKG-INFO +14 -0
- engini-0.0.0/README.md +4 -0
- engini-0.0.0/pyproject.toml +18 -0
- engini-0.0.0/src/engini_placeholder/__init__.py +1 -0
engini-0.0.0/.gitignore
ADDED
|
@@ -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
|
engini-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: engini
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation for the Engini SDK. 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
|
|
12
|
+
|
|
13
|
+
Name reservation placeholder for the Engini SDK.
|
|
14
|
+
The functional SDK ships from the engini-sdks repository. See https://engini.io.
|
engini-0.0.0/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "engini"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Name reservation for the Engini SDK. 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_placeholder"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.0"
|