preparse 0.1.5__tar.gz → 0.1.7__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.
- {preparse-0.1.5/src/preparse.egg-info → preparse-0.1.7}/PKG-INFO +6 -6
- {preparse-0.1.5 → preparse-0.1.7}/pyproject.toml +6 -6
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/_processing/__init__.py +1 -1
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/_processing/items.py +1 -2
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/_processing/parsing.py +5 -5
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/core/Optdict.py +0 -1
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/core/warnings.py +1 -1
- {preparse-0.1.5 → preparse-0.1.7/src/preparse.egg-info}/PKG-INFO +6 -6
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse.egg-info/SOURCES.txt +1 -1
- preparse-0.1.7/src/preparse.egg-info/requires.txt +6 -0
- preparse-0.1.5/src/preparse.egg-info/requires.txt +0 -6
- {preparse-0.1.5 → preparse-0.1.7}/LICENSE.txt +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/MANIFEST.in +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/README.rst +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/setup.cfg +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/__init__.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/_processing/deparsing.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/_processing/digesting.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/_processing/pulling.py +0 -0
- /preparse-0.1.5/src/preparse/_processing/utils.py → /preparse-0.1.7/src/preparse/_utils.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/core/Click.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/core/PreParser.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/core/__init__.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/core/enums.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/tests/__init__.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/tests/data.toml +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/tests/expit.toml +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/tests/test_data_toml.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/tests/test_expit_toml.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse/tests/test_features.py +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse.egg-info/dependency_links.txt +0 -0
- {preparse-0.1.5 → preparse-0.1.7}/src/preparse.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: preparse
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: This project preparses args for further parsing later on.
|
|
5
5
|
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -39,12 +39,12 @@ Classifier: Typing :: Typed
|
|
|
39
39
|
Requires-Python: >=3.11
|
|
40
40
|
Description-Content-Type: text/x-rst
|
|
41
41
|
License-File: LICENSE.txt
|
|
42
|
-
Requires-Dist: click
|
|
43
|
-
Requires-Dist: datahold
|
|
44
|
-
Requires-Dist: datarepr
|
|
42
|
+
Requires-Dist: click<9,>=8.2
|
|
43
|
+
Requires-Dist: datahold<2,>=1.1.10
|
|
44
|
+
Requires-Dist: datarepr<2,>=1.0.2
|
|
45
45
|
Requires-Dist: makeprop>=0.1
|
|
46
|
-
Requires-Dist: overloadable
|
|
47
|
-
Requires-Dist: tofunc
|
|
46
|
+
Requires-Dist: overloadable<2,>=1.0.9
|
|
47
|
+
Requires-Dist: tofunc<2,>=1.0
|
|
48
48
|
Dynamic: license-file
|
|
49
49
|
|
|
50
50
|
========
|
|
@@ -19,19 +19,19 @@ classifiers = [
|
|
|
19
19
|
"Typing :: Typed",
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
|
-
"click>=8.
|
|
23
|
-
"datahold>=1.1.10",
|
|
24
|
-
"datarepr>=
|
|
22
|
+
"click>=8.2,<9",
|
|
23
|
+
"datahold>=1.1.10,<2",
|
|
24
|
+
"datarepr>=1.0.2,<2",
|
|
25
25
|
"makeprop>=0.1",
|
|
26
|
-
"overloadable>=1.0.9",
|
|
27
|
-
"tofunc>=1.0",
|
|
26
|
+
"overloadable>=1.0.9,<2",
|
|
27
|
+
"tofunc>=1.0,<2",
|
|
28
28
|
]
|
|
29
29
|
description = "This project preparses args for further parsing later on."
|
|
30
30
|
keywords = []
|
|
31
31
|
name = "preparse"
|
|
32
32
|
readme = "README.rst"
|
|
33
33
|
requires-python = ">=3.11"
|
|
34
|
-
version = "0.1.
|
|
34
|
+
version = "0.1.7"
|
|
35
35
|
|
|
36
36
|
[project.license]
|
|
37
37
|
file = "LICENSE.txt"
|
|
@@ -6,7 +6,7 @@ from preparse._processing.digesting import *
|
|
|
6
6
|
from preparse._processing.items import *
|
|
7
7
|
from preparse._processing.parsing import *
|
|
8
8
|
from preparse._processing.pulling import *
|
|
9
|
-
from preparse.
|
|
9
|
+
from preparse._utils import *
|
|
10
10
|
from preparse.core.enums import *
|
|
11
11
|
|
|
12
12
|
__all__ = ["BaseData", "dataprop", "process"]
|
|
@@ -2,9 +2,8 @@ import abc
|
|
|
2
2
|
import operator
|
|
3
3
|
from typing import *
|
|
4
4
|
|
|
5
|
-
from preparse.
|
|
5
|
+
from preparse._utils import *
|
|
6
6
|
from preparse.core.enums import *
|
|
7
|
-
from preparse.core.warnings import *
|
|
8
7
|
|
|
9
8
|
__all__ = ["Item", "Option", "Bundle", "Long", "Special", "Positional"]
|
|
10
9
|
|
|
@@ -2,15 +2,15 @@ from types import FunctionType
|
|
|
2
2
|
from typing import *
|
|
3
3
|
|
|
4
4
|
from preparse._processing.items import *
|
|
5
|
+
from preparse.core import warnings
|
|
5
6
|
from preparse.core.enums import *
|
|
6
|
-
from preparse.core.warnings import *
|
|
7
7
|
|
|
8
8
|
__all__ = ["parse"]
|
|
9
9
|
|
|
10
|
-
PAOW = PreparseAmbiguousOptionWarning
|
|
11
|
-
PIOW = PreparseInvalidOptionWarning
|
|
12
|
-
PUAW = PreparseUnallowedArgumentWarning
|
|
13
|
-
PRAW = PreparseRequiredArgumentWarning
|
|
10
|
+
PAOW = warnings.PreparseAmbiguousOptionWarning
|
|
11
|
+
PIOW = warnings.PreparseInvalidOptionWarning
|
|
12
|
+
PUAW = warnings.PreparseUnallowedArgumentWarning
|
|
13
|
+
PRAW = warnings.PreparseRequiredArgumentWarning
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
def parse(args: list[str], **kwargs: Any) -> list[Item]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: preparse
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: This project preparses args for further parsing later on.
|
|
5
5
|
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -39,12 +39,12 @@ Classifier: Typing :: Typed
|
|
|
39
39
|
Requires-Python: >=3.11
|
|
40
40
|
Description-Content-Type: text/x-rst
|
|
41
41
|
License-File: LICENSE.txt
|
|
42
|
-
Requires-Dist: click
|
|
43
|
-
Requires-Dist: datahold
|
|
44
|
-
Requires-Dist: datarepr
|
|
42
|
+
Requires-Dist: click<9,>=8.2
|
|
43
|
+
Requires-Dist: datahold<2,>=1.1.10
|
|
44
|
+
Requires-Dist: datarepr<2,>=1.0.2
|
|
45
45
|
Requires-Dist: makeprop>=0.1
|
|
46
|
-
Requires-Dist: overloadable
|
|
47
|
-
Requires-Dist: tofunc
|
|
46
|
+
Requires-Dist: overloadable<2,>=1.0.9
|
|
47
|
+
Requires-Dist: tofunc<2,>=1.0
|
|
48
48
|
Dynamic: license-file
|
|
49
49
|
|
|
50
50
|
========
|
|
@@ -4,6 +4,7 @@ README.rst
|
|
|
4
4
|
pyproject.toml
|
|
5
5
|
setup.cfg
|
|
6
6
|
src/preparse/__init__.py
|
|
7
|
+
src/preparse/_utils.py
|
|
7
8
|
src/preparse.egg-info/PKG-INFO
|
|
8
9
|
src/preparse.egg-info/SOURCES.txt
|
|
9
10
|
src/preparse.egg-info/dependency_links.txt
|
|
@@ -15,7 +16,6 @@ src/preparse/_processing/digesting.py
|
|
|
15
16
|
src/preparse/_processing/items.py
|
|
16
17
|
src/preparse/_processing/parsing.py
|
|
17
18
|
src/preparse/_processing/pulling.py
|
|
18
|
-
src/preparse/_processing/utils.py
|
|
19
19
|
src/preparse/core/Click.py
|
|
20
20
|
src/preparse/core/Optdict.py
|
|
21
21
|
src/preparse/core/PreParser.py
|
|
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
|
|
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
|