pathutilx 1.3.0__tar.gz → 1.3.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.
- {pathutilx-1.3.0 → pathutilx-1.3.2}/PKG-INFO +11 -12
- {pathutilx-1.3.0 → pathutilx-1.3.2}/README.md +9 -10
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx.egg-info/PKG-INFO +11 -12
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pyproject.toml +2 -2
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx/__init__.py +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx/finder/__init__.py +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx/finder/linux.py +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx/finder/macos.py +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx/finder/windows.py +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx/main.py +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx.egg-info/SOURCES.txt +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx.egg-info/dependency_links.txt +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/pathutilx.egg-info/top_level.txt +0 -0
- {pathutilx-1.3.0 → pathutilx-1.3.2}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pathutilx
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Simple, easy to use, readable Windows path helpers inspired by pathlib and os.
|
|
5
|
-
Keywords: path,pathlib,windows,filesystem,utility
|
|
5
|
+
Keywords: path,pathlib,windows,linux,macos,filesystem,utility
|
|
6
6
|
Classifier: Development Status :: 5 - Production/Stable
|
|
7
7
|
Classifier: Intended Audience :: Developers
|
|
8
8
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
@@ -20,10 +20,12 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
|
|
21
21
|
# pathutilx
|
|
22
22
|
|
|
23
|
-

|
|
24
|
-

|
|
25
|
-

|
|
26
|
-

|
|
24
|
+

|
|
25
|
+

|
|
26
|
+

|
|
27
|
+

|
|
28
|
+

|
|
27
29
|
|
|
28
30
|
`pathutilx` is a lightweight Python package for readable Windows path shortcuts and helpers. It makes it easy to build paths, resolve common Windows folder locations, and perform directory listing and search operations consistently.
|
|
29
31
|
|
|
@@ -33,7 +35,7 @@ Description-Content-Type: text/markdown
|
|
|
33
35
|
pip install pathutilx
|
|
34
36
|
```
|
|
35
37
|
```bash
|
|
36
|
-
pip install pathutilx==1.3.
|
|
38
|
+
pip install pathutilx==1.3.1
|
|
37
39
|
```
|
|
38
40
|
```bash
|
|
39
41
|
pip install --upgrade pathutilx
|
|
@@ -125,11 +127,8 @@ print(root.desktop)
|
|
|
125
127
|
|
|
126
128
|
## Changelog
|
|
127
129
|
|
|
128
|
-
### 1.3.
|
|
129
|
-
-
|
|
130
|
-
- Basic Linux and macOS support (MAY BE UNSTABLE)
|
|
131
|
-
- More Windows's folders support
|
|
132
|
-
- Path resolver
|
|
130
|
+
### 1.3.2
|
|
131
|
+
- Improved `README.md` and `pyproject.toml`
|
|
133
132
|
|
|
134
133
|
## Roadmap
|
|
135
134
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# pathutilx
|
|
2
2
|
|
|
3
|
-

|
|
4
|
-

|
|
5
|
-

|
|
6
|
-

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
7
9
|
|
|
8
10
|
`pathutilx` is a lightweight Python package for readable Windows path shortcuts and helpers. It makes it easy to build paths, resolve common Windows folder locations, and perform directory listing and search operations consistently.
|
|
9
11
|
|
|
@@ -13,7 +15,7 @@
|
|
|
13
15
|
pip install pathutilx
|
|
14
16
|
```
|
|
15
17
|
```bash
|
|
16
|
-
pip install pathutilx==1.3.
|
|
18
|
+
pip install pathutilx==1.3.1
|
|
17
19
|
```
|
|
18
20
|
```bash
|
|
19
21
|
pip install --upgrade pathutilx
|
|
@@ -105,11 +107,8 @@ print(root.desktop)
|
|
|
105
107
|
|
|
106
108
|
## Changelog
|
|
107
109
|
|
|
108
|
-
### 1.3.
|
|
109
|
-
-
|
|
110
|
-
- Basic Linux and macOS support (MAY BE UNSTABLE)
|
|
111
|
-
- More Windows's folders support
|
|
112
|
-
- Path resolver
|
|
110
|
+
### 1.3.2
|
|
111
|
+
- Improved `README.md` and `pyproject.toml`
|
|
113
112
|
|
|
114
113
|
## Roadmap
|
|
115
114
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pathutilx
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Simple, easy to use, readable Windows path helpers inspired by pathlib and os.
|
|
5
|
-
Keywords: path,pathlib,windows,filesystem,utility
|
|
5
|
+
Keywords: path,pathlib,windows,linux,macos,filesystem,utility
|
|
6
6
|
Classifier: Development Status :: 5 - Production/Stable
|
|
7
7
|
Classifier: Intended Audience :: Developers
|
|
8
8
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
@@ -20,10 +20,12 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
|
|
21
21
|
# pathutilx
|
|
22
22
|
|
|
23
|
-

|
|
24
|
-

|
|
25
|
-

|
|
26
|
-

|
|
24
|
+

|
|
25
|
+

|
|
26
|
+

|
|
27
|
+

|
|
28
|
+

|
|
27
29
|
|
|
28
30
|
`pathutilx` is a lightweight Python package for readable Windows path shortcuts and helpers. It makes it easy to build paths, resolve common Windows folder locations, and perform directory listing and search operations consistently.
|
|
29
31
|
|
|
@@ -33,7 +35,7 @@ Description-Content-Type: text/markdown
|
|
|
33
35
|
pip install pathutilx
|
|
34
36
|
```
|
|
35
37
|
```bash
|
|
36
|
-
pip install pathutilx==1.3.
|
|
38
|
+
pip install pathutilx==1.3.1
|
|
37
39
|
```
|
|
38
40
|
```bash
|
|
39
41
|
pip install --upgrade pathutilx
|
|
@@ -125,11 +127,8 @@ print(root.desktop)
|
|
|
125
127
|
|
|
126
128
|
## Changelog
|
|
127
129
|
|
|
128
|
-
### 1.3.
|
|
129
|
-
-
|
|
130
|
-
- Basic Linux and macOS support (MAY BE UNSTABLE)
|
|
131
|
-
- More Windows's folders support
|
|
132
|
-
- Path resolver
|
|
130
|
+
### 1.3.2
|
|
131
|
+
- Improved `README.md` and `pyproject.toml`
|
|
133
132
|
|
|
134
133
|
## Roadmap
|
|
135
134
|
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pathutilx"
|
|
7
|
-
version = "1.3.
|
|
7
|
+
version = "1.3.2"
|
|
8
8
|
description = "Simple, easy to use, readable Windows path helpers inspired by pathlib and os."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
|
-
keywords = ["path", "pathlib", "windows", "filesystem", "utility"]
|
|
11
|
+
keywords = ["path", "pathlib", "windows", "linux", "macos", "filesystem", "utility"]
|
|
12
12
|
classifiers = [
|
|
13
13
|
"Development Status :: 5 - Production/Stable",
|
|
14
14
|
"Intended Audience :: Developers",
|
|
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
|