pathlib-next 0.2.0__tar.gz → 0.2.1__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.
Files changed (23) hide show
  1. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/PKG-INFO +2 -1
  2. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/pyproject.toml +2 -2
  3. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/.gitignore +0 -0
  4. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/LICENSE +0 -0
  5. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/README.md +0 -0
  6. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/example.py +0 -0
  7. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/__init__.py +0 -0
  8. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/fspath.py +0 -0
  9. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/mempath.py +0 -0
  10. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/path.py +0 -0
  11. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/__init__.py +0 -0
  12. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/query.py +0 -0
  13. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/schemes/__init__.py +0 -0
  14. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/schemes/file.py +0 -0
  15. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/schemes/http.py +0 -0
  16. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/schemes/sftp.py +0 -0
  17. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/uri/source.py +0 -0
  18. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/utils/__init__.py +0 -0
  19. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/utils/glob.py +0 -0
  20. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/utils/stat.py +0 -0
  21. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/src/pathlib_next/utils/sync.py +0 -0
  22. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/tests/test_local.py +0 -0
  23. {pathlib_next-0.2.0 → pathlib_next-0.2.1}/tests/test_uri.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pathlib_next
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Generic Path Protocol based pathlib
5
5
  Project-URL: Homepage, https://github.com/jose-pr/pathlib_next/
6
6
  Project-URL: Issues, https://github.com/jose-pr/pathlib_next/issues
@@ -13,6 +13,7 @@ Requires-Python: >=3.11
13
13
  Provides-Extra: dev
14
14
  Requires-Dist: build; extra == 'dev'
15
15
  Requires-Dist: hatchling; extra == 'dev'
16
+ Requires-Dist: pytest; extra == 'dev'
16
17
  Requires-Dist: twine; extra == 'dev'
17
18
  Provides-Extra: http
18
19
  Requires-Dist: bs4; extra == 'http'
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "pathlib_next"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  authors = [{ name = "Jose A" }]
9
9
  description = "Generic Path Protocol based pathlib"
10
10
  readme = "README.md"
@@ -19,7 +19,7 @@ dependencies = []
19
19
  uri = ["uritools"]
20
20
  http = ["requests", "pathlib_next[uri]", 'htmllistparse', 'bs4']
21
21
  sftp = ["paramiko", "pathlib_next[uri]"]
22
- dev = ['build', 'twine', 'hatchling']
22
+ dev = ['build', 'twine', 'hatchling', 'pytest']
23
23
 
24
24
 
25
25
  [project.urls]
File without changes
File without changes
File without changes