soorma-sdk 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.
- soorma_sdk-0.0.0/PKG-INFO +28 -0
- soorma_sdk-0.0.0/README.md +12 -0
- soorma_sdk-0.0.0/pyproject.toml +26 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: soorma-sdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Alias for the soorma package. Install `soorma` instead.
|
|
5
|
+
Project-URL: Homepage, https://soorma.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/soorma-ai/soorma-sdk
|
|
7
|
+
Project-URL: Install this instead, https://pypi.org/project/soorma/
|
|
8
|
+
Author: Amit Bhadoria
|
|
9
|
+
License: Apache-2.0
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Requires-Dist: soorma
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# soorma-sdk
|
|
18
|
+
|
|
19
|
+
**You probably want [`soorma`](https://pypi.org/project/soorma/) instead.**
|
|
20
|
+
|
|
21
|
+
pip install soorma
|
|
22
|
+
|
|
23
|
+
This distribution exists because the client SDKs are developed in a repository
|
|
24
|
+
named [`soorma-sdk`](https://github.com/soorma-ai/soorma-sdk), and the name is
|
|
25
|
+
a reasonable guess. It installs `soorma` for you and provides nothing itself.
|
|
26
|
+
|
|
27
|
+
The repository is polyglot — each language publishes under its own ecosystem's
|
|
28
|
+
conventions, and the Python harness is published as `soorma`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# soorma-sdk
|
|
2
|
+
|
|
3
|
+
**You probably want [`soorma`](https://pypi.org/project/soorma/) instead.**
|
|
4
|
+
|
|
5
|
+
pip install soorma
|
|
6
|
+
|
|
7
|
+
This distribution exists because the client SDKs are developed in a repository
|
|
8
|
+
named [`soorma-sdk`](https://github.com/soorma-ai/soorma-sdk), and the name is
|
|
9
|
+
a reasonable guess. It installs `soorma` for you and provides nothing itself.
|
|
10
|
+
|
|
11
|
+
The repository is polyglot — each language publishes under its own ecosystem's
|
|
12
|
+
conventions, and the Python harness is published as `soorma`.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "soorma-sdk"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Alias for the soorma package. Install `soorma` instead."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Amit Bhadoria" }]
|
|
13
|
+
dependencies = ["soorma"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://soorma.ai"
|
|
22
|
+
Repository = "https://github.com/soorma-ai/soorma-sdk"
|
|
23
|
+
"Install this instead" = "https://pypi.org/project/soorma/"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
bypass-selection = true
|