quickpub 0.8.1__tar.gz → 0.8.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.
- {quickpub-0.8.1/quickpub.egg-info → quickpub-0.8.2}/PKG-INFO +4 -4
- {quickpub-0.8.1 → quickpub-0.8.2}/README.md +3 -3
- {quickpub-0.8.1 → quickpub-0.8.2}/pyproject.toml +1 -1
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/implementations/mypy.py +3 -2
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/implementations/pylint.py +3 -2
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/implementations/unittest.py +2 -2
- {quickpub-0.8.1 → quickpub-0.8.2/quickpub.egg-info}/PKG-INFO +4 -4
- {quickpub-0.8.1 → quickpub-0.8.2}/LICENSE +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/MANIFEST.in +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/__init__.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/__main__.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/classifiers.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/custom_types.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/enforcers.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/files.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/functions.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/proxy.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/py.typed +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/__init__.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/common_check.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/configurable.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/has_optional_executable.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/implementations/__init__.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/implementations/pytest.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/runnables/runnable.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/structures/__init__.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/structures/additional_configuration.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/structures/bound.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/structures/version.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub/validators.py +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub.egg-info/SOURCES.txt +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub.egg-info/dependency_links.txt +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub.egg-info/requires.txt +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/quickpub.egg-info/top_level.txt +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/setup.cfg +0 -0
- {quickpub-0.8.1 → quickpub-0.8.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: quickpub
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: A python package to quickly configure and publish a new package
|
|
5
5
|
Author-email: danielnachumdev <danielnachumdev@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -54,9 +54,9 @@ def main() -> None:
|
|
|
54
54
|
min_python="3.9.19",
|
|
55
55
|
config=AdditionalConfiguration(
|
|
56
56
|
runners=[
|
|
57
|
-
MypyRunner(),
|
|
58
|
-
PylintRunner(),
|
|
59
|
-
UnittestRunner(),
|
|
57
|
+
MypyRunner(bound="<15"),
|
|
58
|
+
PylintRunner(bound=">=0.8"),
|
|
59
|
+
UnittestRunner(bound=">=0.8"),
|
|
60
60
|
]
|
|
61
61
|
)
|
|
62
62
|
)
|
|
@@ -18,9 +18,9 @@ def main() -> None:
|
|
|
18
18
|
min_python="3.9.19",
|
|
19
19
|
config=AdditionalConfiguration(
|
|
20
20
|
runners=[
|
|
21
|
-
MypyRunner(),
|
|
22
|
-
PylintRunner(),
|
|
23
|
-
UnittestRunner(),
|
|
21
|
+
MypyRunner(bound="<15"),
|
|
22
|
+
PylintRunner(bound=">=0.8"),
|
|
23
|
+
UnittestRunner(bound=">=0.8"),
|
|
24
24
|
]
|
|
25
25
|
)
|
|
26
26
|
)
|
|
@@ -7,8 +7,9 @@ from ..common_check import CommonCheck
|
|
|
7
7
|
class MypyRunner(CommonCheck):
|
|
8
8
|
RATING_PATTERN: re.Pattern = re.compile(r".*?([\d\.\/]+)")
|
|
9
9
|
|
|
10
|
-
def __init__(self,
|
|
11
|
-
|
|
10
|
+
def __init__(self, bound: str = "<15", configuration_path: Optional[str] = None,
|
|
11
|
+
executable_path: Optional[str] = None) -> None:
|
|
12
|
+
CommonCheck.__init__(self, "mypy", bound, configuration_path, executable_path)
|
|
12
13
|
|
|
13
14
|
def _calculate_score(self, ret, lines: t_list[str]) -> float:
|
|
14
15
|
from ...enforcers import exit_if
|
|
@@ -5,8 +5,9 @@ from ..common_check import CommonCheck
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
class PylintRunner(CommonCheck):
|
|
8
|
-
def __init__(self,
|
|
9
|
-
|
|
8
|
+
def __init__(self, bound: str = ">=0.8", configuration_path: Optional[str] = None,
|
|
9
|
+
executable_path: Optional[str] = None) -> None:
|
|
10
|
+
CommonCheck.__init__(self, "pylint", bound, configuration_path, executable_path)
|
|
10
11
|
|
|
11
12
|
RATING_PATTERN: re.Pattern = re.compile(r".*?([\d\.\/]+)")
|
|
12
13
|
|
|
@@ -16,8 +16,8 @@ class UnittestRunner(CommonCheck):
|
|
|
16
16
|
|
|
17
17
|
RATING_PATTERN: re.Pattern = re.compile(r".*?([\d\.\/]+)")
|
|
18
18
|
|
|
19
|
-
def __init__(self, target: Optional[str] = "./tests") -> None:
|
|
20
|
-
CommonCheck.__init__(self, "unittest",
|
|
19
|
+
def __init__(self, target: Optional[str] = "./tests", bound: str = ">=0.8") -> None:
|
|
20
|
+
CommonCheck.__init__(self, "unittest", bound, target)
|
|
21
21
|
self._cwd = ""
|
|
22
22
|
|
|
23
23
|
def _build_command(self, src: str, *args) -> str:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: quickpub
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: A python package to quickly configure and publish a new package
|
|
5
5
|
Author-email: danielnachumdev <danielnachumdev@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -54,9 +54,9 @@ def main() -> None:
|
|
|
54
54
|
min_python="3.9.19",
|
|
55
55
|
config=AdditionalConfiguration(
|
|
56
56
|
runners=[
|
|
57
|
-
MypyRunner(),
|
|
58
|
-
PylintRunner(),
|
|
59
|
-
UnittestRunner(),
|
|
57
|
+
MypyRunner(bound="<15"),
|
|
58
|
+
PylintRunner(bound=">=0.8"),
|
|
59
|
+
UnittestRunner(bound=">=0.8"),
|
|
60
60
|
]
|
|
61
61
|
)
|
|
62
62
|
)
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|