reproducibly 0.0.2__tar.gz → 0.0.4__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,15 +1,15 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: reproducibly
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.4
|
4
4
|
Summary: Reproducibly build Python packages
|
5
5
|
Author-email: Keith Maxwell <keith.maxwell@gmail.com>
|
6
6
|
Requires-Python: >=3.11
|
7
7
|
Description-Content-Type: text/markdown
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
10
|
-
Requires-Dist: build==1.
|
11
|
-
Requires-Dist: cibuildwheel==2.
|
12
|
-
Requires-Dist: packaging==
|
10
|
+
Requires-Dist: build==1.1.1
|
11
|
+
Requires-Dist: cibuildwheel==2.17.0
|
12
|
+
Requires-Dist: packaging==24.0
|
13
13
|
Requires-Dist: pyproject_hooks==1.0.0
|
14
14
|
Project-URL: Homepage, https://github.com/maxwell-k/reproducibly/
|
15
15
|
Project-URL: Issues, https://github.com/maxwell-k/reproducibly/issues
|
@@ -45,7 +45,7 @@ cog.out("\n```\n" + RESULT.stdout + "```\n\n")
|
|
45
45
|
]]]-->
|
46
46
|
|
47
47
|
```
|
48
|
-
usage:
|
48
|
+
usage: reproducibly.py [-h] [--version] input [input ...] output
|
49
49
|
|
50
50
|
Reproducibly build Python packages
|
51
51
|
|
@@ -19,9 +19,9 @@ classifiers = [
|
|
19
19
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
20
20
|
]
|
21
21
|
dependencies = [
|
22
|
-
"build==1.
|
23
|
-
"cibuildwheel==2.
|
24
|
-
"packaging==
|
22
|
+
"build==1.1.1",
|
23
|
+
"cibuildwheel==2.17.0",
|
24
|
+
"packaging==24.0",
|
25
25
|
"pyproject_hooks==1.0.0",
|
26
26
|
]
|
27
27
|
|
@@ -31,3 +31,6 @@ Issues = "https://github.com/maxwell-k/reproducibly/issues"
|
|
31
31
|
|
32
32
|
[project.scripts]
|
33
33
|
reproducibly = "reproducibly:main"
|
34
|
+
|
35
|
+
[tool.codespell]
|
36
|
+
skip = './htmlcov'
|
@@ -54,9 +54,9 @@ from pyproject_hooks import default_subprocess_runner
|
|
54
54
|
# /// script
|
55
55
|
# requires-python = ">=3.11"
|
56
56
|
# dependencies = [
|
57
|
-
# "build==1.
|
58
|
-
# "cibuildwheel==2.
|
59
|
-
# "packaging==
|
57
|
+
# "build==1.1.1",
|
58
|
+
# "cibuildwheel==2.17.0",
|
59
|
+
# "packaging==24.0",
|
60
60
|
# "pyproject_hooks==1.0.0",
|
61
61
|
# ]
|
62
62
|
# ///
|
@@ -77,11 +77,11 @@ CONSTRAINTS = {
|
|
77
77
|
# for line in Path("constraints.txt").read_text().splitlines():
|
78
78
|
# cog.outl(f'"{line}",')
|
79
79
|
# ]]]
|
80
|
-
"wheel==0.
|
80
|
+
"wheel==0.43.0",
|
81
81
|
# [[[end]]]
|
82
82
|
}
|
83
83
|
|
84
|
-
__version__ = "0.0.
|
84
|
+
__version__ = "0.0.4"
|
85
85
|
|
86
86
|
|
87
87
|
def _build(srcdir: Path, output: Path, distribution: str) -> Path:
|
@@ -307,7 +307,7 @@ def _is_git_repository(path: Path) -> bool:
|
|
307
307
|
|
308
308
|
def parse_args(args: list[str] | None) -> Arguments:
|
309
309
|
parser = ArgumentParser(
|
310
|
-
prog="
|
310
|
+
prog="reproducibly.py",
|
311
311
|
formatter_class=RawDescriptionHelpFormatter,
|
312
312
|
description=__doc__,
|
313
313
|
)
|