cappysan-dotfile-scripts 0.0.0__py3-none-any.whl

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,20 @@
1
+ #!/usr/bin/env sh
2
+ # ──────────────────────────────────────────────────────────────────────────────
3
+ # $source: cappysan-dotfile-scripts$
4
+ # ──────────────────────────────────────────────────────────────────────────────
5
+ #
6
+ # NAME
7
+ # clear - clear the terminal with any method available
8
+ #
9
+ # SEE ALSO
10
+ # clear_console(1), clear(1)
11
+ #
12
+ if test -x /usr/bin/clear_console; then
13
+ if /usr/bin/clear_console -q "${@}"; then
14
+ exit 0
15
+ fi
16
+ fi
17
+
18
+ if test -x /usr/bin/clear; then
19
+ /usr/bin/clear "${@}"
20
+ fi
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: cappysan-dotfile-scripts
3
+ Version: 0.0.0
4
+ Author-email: Julien Lecomte <julien@cappysan.dev>
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://gitlab.com/cappysan/dotfiles/dotfiles
7
+ Project-URL: Source code, https://gitlab.com/cappysan/dotfiles/dotfiles
8
+ Project-URL: Bug tracker, https://gitlab.com/cappysan/dotfiles/dotfiles
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Provides-Extra: dev
15
+ Dynamic: license-file
@@ -0,0 +1,11 @@
1
+ cappysan_dotfile_scripts-0.0.0.data/scripts/clear,sha256=Y0XE_aFC35cXeOpVqhY1ah-WkrOjv4ds2UI6PeFnF9M,810
2
+ cappysan_dotfile_scripts-0.0.0.dist-info/licenses/LICENSE,sha256=zWBn1T4AvcnHI_KJ3rsQCq1oXKKs5FLr6O3CV4LbBQk,1087
3
+ dotfiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ dotfiles/__main__.py,sha256=zeBCm6VHgIlBm4o2eX90CJVUkUYjxzIFTgTdbrLkmv0,21
5
+ dotfiles/constants.py,sha256=6J0EgZPkdXwhipWn7eMhkIrhyb91epm_1n3nAdfXVYQ,18
6
+ dotfiles/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cappysan_dotfile_scripts-0.0.0.dist-info/METADATA,sha256=iupgHNcvN3AjpkhDnyl5qCiMcuXUppdBAww9eNYuuVw,584
8
+ cappysan_dotfile_scripts-0.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
+ cappysan_dotfile_scripts-0.0.0.dist-info/top_level.txt,sha256=jIpO3kJwgEG8IdNyEamwDavhV48x6GiTBxpQQK9c1qg,9
10
+ cappysan_dotfile_scripts-0.0.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
11
+ cappysan_dotfile_scripts-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025-2025, Julien Lecomte
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ dotfiles
dotfiles/__init__.py ADDED
File without changes
dotfiles/__main__.py ADDED
@@ -0,0 +1,2 @@
1
+ def main():
2
+ pass
dotfiles/constants.py ADDED
@@ -0,0 +1 @@
1
+ VERSION = "0.0.0"
File without changes