filelisting 1.2.4__tar.gz → 1.2.6__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.
- {filelisting-1.2.4/src/filelisting.egg-info → filelisting-1.2.6}/PKG-INFO +8 -5
- {filelisting-1.2.4 → filelisting-1.2.6}/pyproject.toml +6 -4
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting/core/__init__.py +3 -3
- {filelisting-1.2.4 → filelisting-1.2.6/src/filelisting.egg-info}/PKG-INFO +8 -5
- filelisting-1.2.6/src/filelisting.egg-info/requires.txt +2 -0
- filelisting-1.2.4/src/filelisting.egg-info/requires.txt +0 -2
- {filelisting-1.2.4 → filelisting-1.2.6}/LICENSE.txt +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/MANIFEST.in +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/README.rst +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/setup.cfg +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting/__init__.py +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting/__main__.py +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting/tests/__init__.py +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting/tests/test_1984.py +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting.egg-info/SOURCES.txt +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting.egg-info/dependency_links.txt +0 -0
- {filelisting-1.2.4 → filelisting-1.2.6}/src/filelisting.egg-info/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: filelisting
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.6
|
|
4
4
|
Summary: This project lists files under given paths.
|
|
5
|
-
Author-email: Johannes <johannes
|
|
5
|
+
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
7
7
|
|
|
8
8
|
Copyright (c) 2023 Johannes Programming
|
|
@@ -24,21 +24,24 @@ License: The MIT License (MIT)
|
|
|
24
24
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
25
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
26
|
SOFTWARE.
|
|
27
|
-
Project-URL: Documentation, https://filelisting.johannes-programming.online/
|
|
28
27
|
Project-URL: Download, https://pypi.org/project/filelisting/#files
|
|
29
28
|
Project-URL: Index, https://pypi.org/project/filelisting/
|
|
30
29
|
Project-URL: Source, https://github.com/johannes-programming/filelisting/
|
|
31
30
|
Project-URL: Website, https://filelisting.johannes-programming.online/
|
|
32
31
|
Classifier: Development Status :: 5 - Production/Stable
|
|
33
32
|
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Natural Language :: English
|
|
34
|
+
Classifier: Operating System :: OS Independent
|
|
34
35
|
Classifier: Programming Language :: Python
|
|
35
36
|
Classifier: Programming Language :: Python :: 3
|
|
36
37
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
38
|
+
Classifier: Typing :: Typed
|
|
37
39
|
Requires-Python: >=3.11
|
|
38
40
|
Description-Content-Type: text/x-rst
|
|
39
41
|
License-File: LICENSE.txt
|
|
40
42
|
Requires-Dist: click>=8.1.7
|
|
41
|
-
Requires-Dist: preparse>=0.
|
|
43
|
+
Requires-Dist: preparse>=0.1.1
|
|
44
|
+
Dynamic: license-file
|
|
42
45
|
|
|
43
46
|
===========
|
|
44
47
|
filelisting
|
|
@@ -6,31 +6,33 @@ requires = [
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
authors = [
|
|
9
|
-
{ email = "johannes
|
|
9
|
+
{ email = "johannes.programming@gmail.com", name = "Johannes" },
|
|
10
10
|
]
|
|
11
11
|
classifiers = [
|
|
12
12
|
"Development Status :: 5 - Production/Stable",
|
|
13
13
|
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Natural Language :: English",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
14
16
|
"Programming Language :: Python",
|
|
15
17
|
"Programming Language :: Python :: 3",
|
|
16
18
|
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Typing :: Typed",
|
|
17
20
|
]
|
|
18
21
|
dependencies = [
|
|
19
22
|
"click>=8.1.7",
|
|
20
|
-
"preparse>=0.
|
|
23
|
+
"preparse>=0.1.1",
|
|
21
24
|
]
|
|
22
25
|
description = "This project lists files under given paths."
|
|
23
26
|
keywords = []
|
|
24
27
|
name = "filelisting"
|
|
25
28
|
readme = "README.rst"
|
|
26
29
|
requires-python = ">=3.11"
|
|
27
|
-
version = "1.2.
|
|
30
|
+
version = "1.2.6"
|
|
28
31
|
|
|
29
32
|
[project.license]
|
|
30
33
|
file = "LICENSE.txt"
|
|
31
34
|
|
|
32
35
|
[project.urls]
|
|
33
|
-
Documentation = "https://filelisting.johannes-programming.online/"
|
|
34
36
|
Download = "https://pypi.org/project/filelisting/#files"
|
|
35
37
|
Index = "https://pypi.org/project/filelisting/"
|
|
36
38
|
Source = "https://github.com/johannes-programming/filelisting/"
|
|
@@ -27,13 +27,13 @@ def file_list(*paths: Any) -> List[str]:
|
|
|
27
27
|
return list(file_generator(*paths))
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
@preparse.PreParser(
|
|
30
|
+
@preparse.PreParser().click()
|
|
31
31
|
@click.command(add_help_option=False)
|
|
32
32
|
@click.help_option("-h", "--help")
|
|
33
33
|
@click.version_option(None, "-V", "--version")
|
|
34
34
|
@click.argument("path", nargs=-1)
|
|
35
|
-
def main(path):
|
|
36
|
-
"
|
|
35
|
+
def main(path: Iterable) -> None:
|
|
36
|
+
"This command lists files under given paths."
|
|
37
37
|
for f in file_list(*path):
|
|
38
38
|
click.echo(f)
|
|
39
39
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: filelisting
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.6
|
|
4
4
|
Summary: This project lists files under given paths.
|
|
5
|
-
Author-email: Johannes <johannes
|
|
5
|
+
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
7
7
|
|
|
8
8
|
Copyright (c) 2023 Johannes Programming
|
|
@@ -24,21 +24,24 @@ License: The MIT License (MIT)
|
|
|
24
24
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
25
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
26
|
SOFTWARE.
|
|
27
|
-
Project-URL: Documentation, https://filelisting.johannes-programming.online/
|
|
28
27
|
Project-URL: Download, https://pypi.org/project/filelisting/#files
|
|
29
28
|
Project-URL: Index, https://pypi.org/project/filelisting/
|
|
30
29
|
Project-URL: Source, https://github.com/johannes-programming/filelisting/
|
|
31
30
|
Project-URL: Website, https://filelisting.johannes-programming.online/
|
|
32
31
|
Classifier: Development Status :: 5 - Production/Stable
|
|
33
32
|
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Natural Language :: English
|
|
34
|
+
Classifier: Operating System :: OS Independent
|
|
34
35
|
Classifier: Programming Language :: Python
|
|
35
36
|
Classifier: Programming Language :: Python :: 3
|
|
36
37
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
38
|
+
Classifier: Typing :: Typed
|
|
37
39
|
Requires-Python: >=3.11
|
|
38
40
|
Description-Content-Type: text/x-rst
|
|
39
41
|
License-File: LICENSE.txt
|
|
40
42
|
Requires-Dist: click>=8.1.7
|
|
41
|
-
Requires-Dist: preparse>=0.
|
|
43
|
+
Requires-Dist: preparse>=0.1.1
|
|
44
|
+
Dynamic: license-file
|
|
42
45
|
|
|
43
46
|
===========
|
|
44
47
|
filelisting
|
|
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
|