Compare commits
No commits in common. "b9412e82aebd961e9295467e1756cc8cad41ab40" and "d84b6f744bc76a52de9354794aff797217dccfb7" have entirely different histories.
b9412e82ae
...
d84b6f744b
5 changed files with 2 additions and 39 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
__pycache__
|
__pycache__
|
||||||
/dist
|
|
||||||
/.venv
|
/.venv
|
||||||
|
|
3
cd.sh
3
cd.sh
|
@ -658,8 +658,7 @@ cd_cat () {
|
||||||
cd_echo () {
|
cd_echo () {
|
||||||
if [ -n "${1}" ] ; then
|
if [ -n "${1}" ] ; then
|
||||||
for cd_echo__name in "${@}" ; do
|
for cd_echo__name in "${@}" ; do
|
||||||
eval "cd_echo__text=\"\${${cd_echo__name}}\""
|
eval "echo ${cd_echo__name} = \\\"\${${cd_echo__name}}\\\""
|
||||||
echo "${cd_echo__name} = \"${cd_echo__text}\""
|
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
"""Continuous Deployment."""
|
"""Continuous Deployment."""
|
||||||
|
|
||||||
__version__ = "0.0.1"
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
|
@ -1,36 +1,3 @@
|
||||||
[build-system]
|
|
||||||
requires = ["hatchling"]
|
|
||||||
build-backend = "hatchling.build"
|
|
||||||
|
|
||||||
[project]
|
|
||||||
authors = [
|
|
||||||
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
|
|
||||||
]
|
|
||||||
maintainers = [
|
|
||||||
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
|
|
||||||
]
|
|
||||||
classifiers = [
|
|
||||||
"Programming Language :: Python :: 3",
|
|
||||||
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
||||||
"Operating System :: OS Independent",
|
|
||||||
]
|
|
||||||
dependencies = ["rwx"]
|
|
||||||
description = "Continuous Deployment"
|
|
||||||
dynamic = ["version"]
|
|
||||||
keywords = []
|
|
||||||
license-files = { paths = ["license.md"] }
|
|
||||||
name = "cd"
|
|
||||||
readme = "readme.md"
|
|
||||||
requires-python = ">= 3.10"
|
|
||||||
|
|
||||||
[project.scripts]
|
|
||||||
# command = "package.module:function"
|
|
||||||
|
|
||||||
[project.urls]
|
|
||||||
|
|
||||||
[tool.hatch.version]
|
|
||||||
path = "cd/__init__.py"
|
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 80
|
line-length = 80
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ from various contexts of CA, CI and OCI / OS.
|
||||||
* [ ] 20231112
|
* [ ] 20231112
|
||||||
* [X] 20240101
|
* [X] 20240101
|
||||||
* [X] Debian
|
* [X] Debian
|
||||||
* [ ] Bullseye (11) → Python 3.9
|
* [X] Bullseye (11) → Python 3.9
|
||||||
* [X] Bookworm (12) → Python 3.11
|
* [X] Bookworm (12) → Python 3.11
|
||||||
* [X] Fedora → Python 3.12
|
* [X] Fedora → Python 3.12
|
||||||
* [X] 39
|
* [X] 39
|
||||||
|
|
Loading…
Add table
Reference in a new issue