onbehalf 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.
- onbehalf-0.0.0/PKG-INFO +15 -0
- onbehalf-0.0.0/README.md +5 -0
- onbehalf-0.0.0/pyproject.toml +18 -0
- onbehalf-0.0.0/src/onbehalf/__init__.py +6 -0
onbehalf-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: onbehalf
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for the behalf project (https://behalf.sh). Not yet implemented.
|
|
5
|
+
Project-URL: Homepage, https://behalf.sh
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: behalf
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# onbehalf
|
|
12
|
+
|
|
13
|
+
Placeholder. This name is reserved for the **behalf** project — <https://behalf.sh>.
|
|
14
|
+
|
|
15
|
+
Nothing is published here yet. Follow the site for updates.
|
onbehalf-0.0.0/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "onbehalf"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Placeholder for the behalf project (https://behalf.sh). Not yet implemented."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.9"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
keywords = ["behalf"]
|
|
9
|
+
|
|
10
|
+
[project.urls]
|
|
11
|
+
Homepage = "https://behalf.sh"
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["hatchling"]
|
|
15
|
+
build-backend = "hatchling.build"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/onbehalf"]
|