delegatus 0.0.1__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.
- delegatus-0.0.1/PKG-INFO +23 -0
- delegatus-0.0.1/README.md +5 -0
- delegatus-0.0.1/delegatus/__init__.py +3 -0
- delegatus-0.0.1/pyproject.toml +18 -0
delegatus-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: delegatus
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Authorization for agents that delegate. Name reserved; first release coming. https://delegatus.dev
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Author: Arnav Choudhury
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
15
|
+
Project-URL: Homepage, https://delegatus.dev
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# delegatus
|
|
19
|
+
|
|
20
|
+
Reserved for the Delegatus SDK: authorization for agents that delegate. First release coming.
|
|
21
|
+
|
|
22
|
+
https://delegatus.dev
|
|
23
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "delegatus"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Authorization for agents that delegate. Name reserved; first release coming. https://delegatus.dev"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.9"
|
|
7
|
+
license = "Apache-2.0"
|
|
8
|
+
authors = [{ name = "Arnav Choudhury" }]
|
|
9
|
+
|
|
10
|
+
[project.urls]
|
|
11
|
+
Homepage = "https://delegatus.dev"
|
|
12
|
+
|
|
13
|
+
[tool.poetry]
|
|
14
|
+
packages = [{ include = "delegatus" }]
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["poetry-core>=2.0"]
|
|
18
|
+
build-backend = "poetry.core.masonry.api"
|