depwarden-cli 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.
- depwarden_cli-0.0.1/PKG-INFO +13 -0
- depwarden_cli-0.0.1/README.md +3 -0
- depwarden_cli-0.0.1/depwarden_cli/__init__.py +6 -0
- depwarden_cli-0.0.1/depwarden_cli.egg-info/PKG-INFO +13 -0
- depwarden_cli-0.0.1/depwarden_cli.egg-info/SOURCES.txt +7 -0
- depwarden_cli-0.0.1/depwarden_cli.egg-info/dependency_links.txt +1 -0
- depwarden_cli-0.0.1/depwarden_cli.egg-info/top_level.txt +1 -0
- depwarden_cli-0.0.1/pyproject.toml +15 -0
- depwarden_cli-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: depwarden-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder — the DepWarden Python plugin isn't published yet. See https://depwarden.in/plugins
|
|
5
|
+
Author-email: Rushabh Shah <rushabh5000@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://depwarden.in
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
The DepWarden Python plugin isn't published yet — this name is reserved for it.
|
|
12
|
+
|
|
13
|
+
See https://depwarden.in/plugins for what's live today (Maven, npm, GitHub Actions).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: depwarden-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder — the DepWarden Python plugin isn't published yet. See https://depwarden.in/plugins
|
|
5
|
+
Author-email: Rushabh Shah <rushabh5000@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://depwarden.in
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
The DepWarden Python plugin isn't published yet — this name is reserved for it.
|
|
12
|
+
|
|
13
|
+
See https://depwarden.in/plugins for what's live today (Maven, npm, GitHub Actions).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
depwarden_cli
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "depwarden-cli"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder — the DepWarden Python plugin isn't published yet. See https://depwarden.in/plugins"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Rushabh Shah", email = "rushabh5000@gmail.com" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://depwarden.in"
|