iirds-sdk 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.
iirds_sdk-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: iirds-sdk
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Alias of the `iirds` package. Install `iirds`; this name is held under the same stewardship pledge.
|
|
5
|
+
Project-URL: Homepage, https://github.com/dev365code/iirds
|
|
6
|
+
Author-email: Wooyong Lee <zero8004paz@gmail.com>
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Requires-Dist: iirds==0.1.0
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# iirds-sdk
|
|
13
|
+
|
|
14
|
+
An alias of [`iirds`](https://pypi.org/project/iirds/) — install that.
|
|
15
|
+
Both names are held in stewardship for the iiRDS ecosystem and will be
|
|
16
|
+
transferred to the iiRDS Consortium on request.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "iirds-sdk"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Alias of the `iirds` package. Install `iirds`; this name is held under the same stewardship pledge."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Wooyong Lee", email = "zero8004paz@gmail.com" }]
|
|
13
|
+
dependencies = ["iirds==0.1.0"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/dev365code/iirds"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/iirds_sdk"]
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"""Alias package: everything lives in `iirds`. This exists so both obvious
|
|
2
|
+
names resolve to the same, real library — and both travel under the same
|
|
3
|
+
pledge: transferred to the iiRDS Consortium on request."""
|
|
4
|
+
from iirds import * # noqa: F401,F403
|
|
5
|
+
from iirds import __version__ # noqa: F401
|