adopt-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.
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
logs
|
|
3
|
+
*.log
|
|
4
|
+
npm-debug.log*
|
|
5
|
+
yarn-debug.log*
|
|
6
|
+
yarn-error.log*
|
|
7
|
+
dev-debug.log
|
|
8
|
+
|
|
9
|
+
# Dependency directories
|
|
10
|
+
node_modules/
|
|
11
|
+
|
|
12
|
+
# Environment variables
|
|
13
|
+
.env
|
|
14
|
+
|
|
15
|
+
# Editor directories and files
|
|
16
|
+
.idea
|
|
17
|
+
.vscode
|
|
18
|
+
*.suo
|
|
19
|
+
*.ntvs*
|
|
20
|
+
*.njsproj
|
|
21
|
+
*.sln
|
|
22
|
+
*.sw?
|
|
23
|
+
|
|
24
|
+
# OS specific
|
|
25
|
+
.DS_Store
|
|
26
|
+
|
|
27
|
+
# Task files
|
|
28
|
+
tasks.json
|
|
29
|
+
tasks/
|
adopt_cli-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: adopt-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder reserving this name; see the project homepage.
|
|
5
|
+
Project-URL: Homepage, https://github.com/onboardux/onboard-core
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# adopt-cli
|
|
10
|
+
|
|
11
|
+
Placeholder reserving this name while trusted publishing is configured.
|
|
12
|
+
It contains no functionality. See https://github.com/onboardux/onboard-core
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Namespace placeholder. Not the real package."""
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "adopt-cli"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Placeholder reserving this name; see the project homepage."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
|
|
8
|
+
[project.urls]
|
|
9
|
+
Homepage = "https://github.com/onboardux/onboard-core"
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["hatchling"]
|
|
13
|
+
build-backend = "hatchling.build"
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["adopt_cli_placeholder"]
|