pseek 2.1.4__tar.gz → 2.1.5__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.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pseek
3
- Version: 2.1.4
3
+ Version: 2.1.5
4
4
  Summary: Pseek is a Python library to search files, folders, and text
5
5
  Home-page: https://github.com/ArianN8610/pysearch
6
6
  Author: Arian
@@ -18,6 +18,7 @@ Dynamic: classifier
18
18
  Dynamic: description
19
19
  Dynamic: description-content-type
20
20
  Dynamic: home-page
21
+ Dynamic: license-file
21
22
  Dynamic: requires-dist
22
23
  Dynamic: requires-python
23
24
  Dynamic: summary
@@ -38,8 +38,8 @@ class Search:
38
38
  self.ext = set(ext)
39
39
  self.exclude_ext = set(exclude_ext)
40
40
  self.regex = regex
41
- self.include = {Path(p).resolve() for p in include}
42
- self.exclude = {Path(p).resolve() for p in exclude}
41
+ self.include = {Path(p) for p in include}
42
+ self.exclude = {Path(p) for p in exclude}
43
43
  self.re_include = re_include
44
44
  self.re_exclude = re_exclude
45
45
  self.whole_word = whole_word
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pseek
3
- Version: 2.1.4
3
+ Version: 2.1.5
4
4
  Summary: Pseek is a Python library to search files, folders, and text
5
5
  Home-page: https://github.com/ArianN8610/pysearch
6
6
  Author: Arian
@@ -18,6 +18,7 @@ Dynamic: classifier
18
18
  Dynamic: description
19
19
  Dynamic: description-content-type
20
20
  Dynamic: home-page
21
+ Dynamic: license-file
21
22
  Dynamic: requires-dist
22
23
  Dynamic: requires-python
23
24
  Dynamic: summary
@@ -5,7 +5,7 @@ with open("README.md", encoding="utf-8") as f:
5
5
 
6
6
  setup(
7
7
  name="pseek",
8
- version="2.1.4",
8
+ version="2.1.5",
9
9
  author="Arian",
10
10
  author_email="ariannasiri86@gmail.com",
11
11
  description="Pseek is a Python library to search files, folders, and text",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes