ftag 0.0.1__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.
- ftag-0.0.1.dist-info/METADATA +30 -0
- ftag-0.0.1.dist-info/RECORD +5 -0
- ftag-0.0.1.dist-info/WHEEL +5 -0
- ftag-0.0.1.dist-info/top_level.txt +1 -0
- ftag.py +19 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ftag
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for the FileTagger project. Install 'filetagger-cli' to get the 'ftag' command.
|
|
5
|
+
Author: David Chincharashvili
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/DavidTbilisi/FileTagger
|
|
8
|
+
Project-URL: Real package, https://pypi.org/project/filetagger-cli/
|
|
9
|
+
Keywords: filetagger,file-tagging,placeholder
|
|
10
|
+
Classifier: Development Status :: 7 - Inactive
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# ftag (reserved)
|
|
19
|
+
|
|
20
|
+
This PyPI name is **reserved by the [FileTagger](https://github.com/DavidTbilisi/FileTagger) project**.
|
|
21
|
+
|
|
22
|
+
It is an intentionally empty placeholder. The real tool is **`filetagger-cli`**,
|
|
23
|
+
which installs the `ftag` command:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install filetagger-cli
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
- Project & docs: https://github.com/DavidTbilisi/FileTagger
|
|
30
|
+
- Real package: https://pypi.org/project/filetagger-cli/
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
ftag.py,sha256=IiZP0WR8plO6fkjUXT1-HP5Qa0-776p7MKuAttivD68,494
|
|
2
|
+
ftag-0.0.1.dist-info/METADATA,sha256=MvevCs_xIYRD-Z_LjDDAqNXU--T7Byt6AGPy5p0dk_U,1095
|
|
3
|
+
ftag-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
4
|
+
ftag-0.0.1.dist-info/top_level.txt,sha256=qiYQuKcAvMim-31FwkT3MTQu7WQm0s58tPAia5KKWqs,5
|
|
5
|
+
ftag-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ftag
|
ftag.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Placeholder for the ``ftag`` name on PyPI.
|
|
2
|
+
|
|
3
|
+
The real tool is **filetagger-cli**, which installs the ``ftag`` command:
|
|
4
|
+
|
|
5
|
+
pip install filetagger-cli
|
|
6
|
+
|
|
7
|
+
Docs: https://github.com/DavidTbilisi/FileTagger
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
_MESSAGE = (
|
|
11
|
+
"The 'ftag' name on PyPI is reserved by the FileTagger project.\n"
|
|
12
|
+
"Install the real tool to get the 'ftag' command:\n"
|
|
13
|
+
" pip install filetagger-cli\n"
|
|
14
|
+
"Docs: https://github.com/DavidTbilisi/FileTagger"
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
if __name__ == "__main__":
|
|
19
|
+
print(_MESSAGE)
|