workwire 0.0.1a1__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.
- workwire-0.0.1a1/.gitignore +13 -0
- workwire-0.0.1a1/PKG-INFO +22 -0
- workwire-0.0.1a1/README.md +8 -0
- workwire-0.0.1a1/pyproject.toml +37 -0
- workwire-0.0.1a1/src/workwire/__init__.py +22 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: workwire
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Official Python SDK for the Workwire API (name reservation — SDK currently available to beta customers)
|
|
5
|
+
Project-URL: Homepage, https://workwire.com
|
|
6
|
+
Author-email: Workwire <support@workwire.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# Workwire Python SDK
|
|
16
|
+
|
|
17
|
+
This release reserves the `workwire` package name for the official
|
|
18
|
+
[Workwire](https://workwire.com) Python SDK.
|
|
19
|
+
|
|
20
|
+
The SDK is currently available to Workwire beta customers — contact
|
|
21
|
+
**support@workwire.com** for access. A public release will land here when
|
|
22
|
+
the Workwire API opens up.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Workwire Python SDK
|
|
2
|
+
|
|
3
|
+
This release reserves the `workwire` package name for the official
|
|
4
|
+
[Workwire](https://workwire.com) Python SDK.
|
|
5
|
+
|
|
6
|
+
The SDK is currently available to Workwire beta customers — contact
|
|
7
|
+
**support@workwire.com** for access. A public release will land here when
|
|
8
|
+
the Workwire API opens up.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Name-reservation placeholder for the `workwire` package on PyPI.
|
|
2
|
+
#
|
|
3
|
+
# Published deliberately INSTEAD of the real SDK while the API contract is
|
|
4
|
+
# login-gated (closed beta): it claims the name with zero contract
|
|
5
|
+
# disclosure. The real SDK at the repo root replaces it on PyPI at public
|
|
6
|
+
# launch. The release is YANKED right after publishing (PyPI UI): the name
|
|
7
|
+
# and project page stay claimed while no default resolver installs the stub
|
|
8
|
+
# — a pre-release marker alone is not an install barrier (uv falls back to
|
|
9
|
+
# pre-releases when only pre-releases exist).
|
|
10
|
+
#
|
|
11
|
+
# Published via .github/workflows/publish-placeholder.yml (manual dispatch,
|
|
12
|
+
# Trusted Publishing). This directory is not part of the SDK build.
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
|
|
18
|
+
[project]
|
|
19
|
+
name = "workwire"
|
|
20
|
+
version = "0.0.1a1"
|
|
21
|
+
description = "Official Python SDK for the Workwire API (name reservation — SDK currently available to beta customers)"
|
|
22
|
+
readme = "README.md"
|
|
23
|
+
license = { text = "MIT" }
|
|
24
|
+
authors = [{ name = "Workwire", email = "support@workwire.com" }]
|
|
25
|
+
requires-python = ">=3.10"
|
|
26
|
+
classifiers = [
|
|
27
|
+
"Development Status :: 1 - Planning",
|
|
28
|
+
"Intended Audience :: Developers",
|
|
29
|
+
"License :: OSI Approved :: MIT License",
|
|
30
|
+
"Programming Language :: Python :: 3",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://workwire.com"
|
|
35
|
+
|
|
36
|
+
[tool.hatch.build.targets.wheel]
|
|
37
|
+
packages = ["src/workwire"]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Name reservation for the official Workwire Python SDK.
|
|
2
|
+
|
|
3
|
+
The SDK is currently available to Workwire beta customers — contact
|
|
4
|
+
support@workwire.com for access.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1a1"
|
|
8
|
+
|
|
9
|
+
_MESSAGE = (
|
|
10
|
+
"This is a name-reservation placeholder for the official Workwire Python "
|
|
11
|
+
"SDK. The SDK is currently available to Workwire beta customers — "
|
|
12
|
+
"contact support@workwire.com for access."
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class Workwire:
|
|
17
|
+
def __init__(self, *args: object, **kwargs: object) -> None:
|
|
18
|
+
raise RuntimeError(_MESSAGE)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def __getattr__(name: str) -> object:
|
|
22
|
+
raise AttributeError(_MESSAGE)
|