cappysan-dotfile-scripts 0.0.0__tar.gz → 0.0.2__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.
- {cappysan_dotfile_scripts-0.0.0/cappysan_dotfile_scripts.egg-info → cappysan_dotfile_scripts-0.0.2}/PKG-INFO +1 -1
- cappysan_dotfile_scripts-0.0.2/bin/now +12 -0
- cappysan_dotfile_scripts-0.0.2/bin/today +12 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2/cappysan_dotfile_scripts.egg-info}/PKG-INFO +1 -1
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/cappysan_dotfile_scripts.egg-info/SOURCES.txt +2 -0
- cappysan_dotfile_scripts-0.0.2/dotfiles/constants.py +1 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/pyproject.toml +5 -2
- cappysan_dotfile_scripts-0.0.0/dotfiles/constants.py +0 -1
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/LICENSE +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/MANIFEST.in +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/README.md +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/bin/clear +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/cappysan_dotfile_scripts.egg-info/dependency_links.txt +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/cappysan_dotfile_scripts.egg-info/requires.txt +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/cappysan_dotfile_scripts.egg-info/top_level.txt +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/cappysan_dotfile_scripts.egg-info/zip-safe +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/constraints.txt +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/dotfiles/__init__.py +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/dotfiles/__main__.py +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/dotfiles/testing/__init__.py +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/requirements-dev.txt +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/requirements.txt +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/setup.cfg +0 -0
- {cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/setup.py +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# ──────────────────────────────────────────────────────────────────────────────
|
|
3
|
+
# $source: cappysan-dotfile-scripts$
|
|
4
|
+
# ──────────────────────────────────────────────────────────────────────────────
|
|
5
|
+
#
|
|
6
|
+
# NAME
|
|
7
|
+
# now - just print the date in a human friendly ISO style format
|
|
8
|
+
#
|
|
9
|
+
# SEE ALSO
|
|
10
|
+
# date(1)
|
|
11
|
+
#
|
|
12
|
+
exec date $@ +"%Y-%m-%d %H:%M:%S"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# ──────────────────────────────────────────────────────────────────────────────
|
|
3
|
+
# $source: cappysan-dotfile-scripts$
|
|
4
|
+
# ──────────────────────────────────────────────────────────────────────────────
|
|
5
|
+
#
|
|
6
|
+
# NAME
|
|
7
|
+
# today - just print the date in a ISO style format
|
|
8
|
+
#
|
|
9
|
+
# SEE ALSO
|
|
10
|
+
# date(1)
|
|
11
|
+
#
|
|
12
|
+
exec date $@ +"%Y-%m-%d"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "0.0.2"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
dynamic = ["dependencies"]
|
|
9
9
|
|
|
10
10
|
name = "cappysan-dotfile-scripts"
|
|
11
|
-
version = "0.0.
|
|
11
|
+
version = "0.0.2"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "Julien Lecomte", email = "julien@cappysan.dev"}
|
|
14
14
|
]
|
|
@@ -48,6 +48,8 @@ packages = [
|
|
|
48
48
|
zip-safe = true
|
|
49
49
|
script-files = [
|
|
50
50
|
"bin/clear",
|
|
51
|
+
"bin/now",
|
|
52
|
+
"bin/today",
|
|
51
53
|
]
|
|
52
54
|
|
|
53
55
|
|
|
@@ -80,7 +82,7 @@ target_version = ["py310", "py311", "py312", "py313", "py314"]
|
|
|
80
82
|
|
|
81
83
|
|
|
82
84
|
[tool.bumpversion]
|
|
83
|
-
current_version = "0.0.
|
|
85
|
+
current_version = "0.0.2"
|
|
84
86
|
parse = """(?x)
|
|
85
87
|
(?P<major>0|[1-9]\\d*)\\.
|
|
86
88
|
(?P<minor>0|[1-9]\\d*)\\.
|
|
@@ -119,6 +121,7 @@ serialize = [
|
|
|
119
121
|
[tool.bumpversion.parts.seg_l]
|
|
120
122
|
values = [ "alpha", "beta", "rc", "post"]
|
|
121
123
|
optional_value = "post"
|
|
124
|
+
independent = true
|
|
122
125
|
|
|
123
126
|
[tool.bumpversion.parts.seg_n]
|
|
124
127
|
first_value = "1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VERSION = "0.0.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cappysan_dotfile_scripts-0.0.0 → cappysan_dotfile_scripts-0.0.2}/dotfiles/testing/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|