progress-table 3.1.0__tar.gz → 3.1.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.
- {progress_table-3.1.0 → progress_table-3.1.2}/.gitignore +2 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/PKG-INFO +6 -10
- {progress_table-3.1.0 → progress_table-3.1.2}/README.md +0 -6
- progress_table-3.1.0/docs/README.md → progress_table-3.1.2/README_pypi.md +0 -6
- {progress_table-3.1.0 → progress_table-3.1.2}/progress_table/__init__.py +1 -1
- {progress_table-3.1.0 → progress_table-3.1.2}/pyproject.toml +2 -2
- {progress_table-3.1.0 → progress_table-3.1.2}/LICENSE.txt +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/docs/advanced-usage.md +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/docs/integrations.md +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/docs/v3-notice.md +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/examples/brown2d.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/examples/download_v1.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/examples/download_v2.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/examples/tictactoe.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/examples/training.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/progress_table/common.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/progress_table/progress_table.py +0 -0
- {progress_table-3.1.0 → progress_table-3.1.2}/progress_table/styles.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: progress-table
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.2
|
|
4
4
|
Summary: Display progress as a pretty table in the command line.
|
|
5
5
|
Project-URL: Home, https://github.com/gahaalt/progress-table
|
|
6
6
|
Project-URL: Documentation, https://github.com/sjmikler/progress-table/blob/main/docs
|
|
@@ -19,18 +19,14 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Requires-Python: >=3.7
|
|
20
20
|
Requires-Dist: colorama
|
|
21
21
|
Provides-Extra: dev
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
22
|
+
Requires-Dist: hatch; extra == 'dev'
|
|
23
|
+
Requires-Dist: pyright; extra == 'dev'
|
|
24
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
25
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
26
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
25
27
|
Requires-Dist: twine; extra == 'dev'
|
|
26
28
|
Description-Content-Type: text/markdown
|
|
27
29
|
|
|
28
|
-
> Version 2.x.x introduces new features and new interactive modes.
|
|
29
|
-
>
|
|
30
|
-
> Version 3.x.x improves compatibility and stability.
|
|
31
|
-
>
|
|
32
|
-
> New features allow for previously impossible applications, see examples below.
|
|
33
|
-
|
|
34
30
|
# Progress Table
|
|
35
31
|
|
|
36
32
|
[](https://pypi.org/project/progress-table)
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
> Version 2.x.x introduces new features and new interactive modes.
|
|
2
|
-
>
|
|
3
|
-
> Version 3.x.x improves compatibility and stability.
|
|
4
|
-
>
|
|
5
|
-
> New features allow for previously impossible applications, see examples below.
|
|
6
|
-
|
|
7
1
|
# Progress Table
|
|
8
2
|
|
|
9
3
|
[](https://pypi.org/project/progress-table)
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
> Version 2.x.x introduces new features and new interactive modes.
|
|
2
|
-
>
|
|
3
|
-
> Version 3.x.x improves compatibility and stability.
|
|
4
|
-
>
|
|
5
|
-
> New features allow for previously impossible applications, see examples below.
|
|
6
|
-
|
|
7
1
|
# Progress Table
|
|
8
2
|
|
|
9
3
|
[](https://pypi.org/project/progress-table)
|
|
@@ -23,14 +23,14 @@ classifiers = [
|
|
|
23
23
|
"Programming Language :: Python :: 3.12",
|
|
24
24
|
"Programming Language :: Python :: 3.13",
|
|
25
25
|
]
|
|
26
|
-
readme = "
|
|
26
|
+
readme = "README_pypi.md"
|
|
27
27
|
|
|
28
28
|
[project.urls]
|
|
29
29
|
Home = "https://github.com/gahaalt/progress-table"
|
|
30
30
|
Documentation = "https://github.com/sjmikler/progress-table/blob/main/docs"
|
|
31
31
|
|
|
32
32
|
[project.optional-dependencies]
|
|
33
|
-
dev = ["
|
|
33
|
+
dev = ["ruff", "pyright", "pytest", "pytest-cov", "hatch", "twine"]
|
|
34
34
|
|
|
35
35
|
[tool.hatch.version]
|
|
36
36
|
path = "progress_table/__init__.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
|