python-toolbox-przemek 0.4.0__tar.gz → 0.4.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.
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/PKG-INFO +3 -1
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/pyproject.toml +6 -2
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek.egg-info/PKG-INFO +3 -1
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek.egg-info/requires.txt +2 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/README.md +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/setup.cfg +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek/__init__.py +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek/toolbox_venv.py +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek.egg-info/SOURCES.txt +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek.egg-info/dependency_links.txt +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek.egg-info/entry_points.txt +0 -0
- {python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-toolbox-przemek
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: We want to provide basic tools for our day-to-day work.
|
|
5
5
|
Author: przemek@sagalo.pro
|
|
6
6
|
Requires-Python: <4,>=3.11
|
|
@@ -18,6 +18,8 @@ Requires-Dist: jupytext==1.17.0; extra == "notebook"
|
|
|
18
18
|
Requires-Dist: ipykernel==6.29.5; extra == "notebook"
|
|
19
19
|
Provides-Extra: tests
|
|
20
20
|
Requires-Dist: coverage==7.8.2; extra == "tests"
|
|
21
|
+
Requires-Dist: pytest-xdist==3.8.0; extra == "tests"
|
|
22
|
+
Requires-Dist: pytest-datadir==1.8.0; extra == "tests"
|
|
21
23
|
|
|
22
24
|
# Python Toolbox Przemek
|
|
23
25
|
I want to provide basic tools for my day-to-day work.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "python-toolbox-przemek"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.2"
|
|
4
4
|
description = "We want to provide basic tools for our day-to-day work."
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "przemek@sagalo.pro"}
|
|
@@ -18,7 +18,11 @@ dependencies = [
|
|
|
18
18
|
[project.optional-dependencies]
|
|
19
19
|
lint = [ "black==24.2.0", "isort==5.13.2", "nbqa==1.9.1" ]
|
|
20
20
|
notebook = [ "nbstripout==0.8.1", "jupytext==1.17.0", "ipykernel==6.29.5" ]
|
|
21
|
-
tests = [
|
|
21
|
+
tests = [
|
|
22
|
+
"coverage==7.8.2", # Generates tests coverage report.
|
|
23
|
+
"pytest-xdist==3.8.0", # Runs pytest on many cores.
|
|
24
|
+
"pytest-datadir==1.8.0" # pytest plugin for test data directories and files - https://pypi.org/project/pytest-datadir/
|
|
25
|
+
]
|
|
22
26
|
|
|
23
27
|
[project.scripts]
|
|
24
28
|
ppce = "python_toolbox_przemek.toolbox_venv:create_venv_unix_like"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-toolbox-przemek
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: We want to provide basic tools for our day-to-day work.
|
|
5
5
|
Author: przemek@sagalo.pro
|
|
6
6
|
Requires-Python: <4,>=3.11
|
|
@@ -18,6 +18,8 @@ Requires-Dist: jupytext==1.17.0; extra == "notebook"
|
|
|
18
18
|
Requires-Dist: ipykernel==6.29.5; extra == "notebook"
|
|
19
19
|
Provides-Extra: tests
|
|
20
20
|
Requires-Dist: coverage==7.8.2; extra == "tests"
|
|
21
|
+
Requires-Dist: pytest-xdist==3.8.0; extra == "tests"
|
|
22
|
+
Requires-Dist: pytest-datadir==1.8.0; extra == "tests"
|
|
21
23
|
|
|
22
24
|
# Python Toolbox Przemek
|
|
23
25
|
I want to provide basic tools for my day-to-day work.
|
|
File without changes
|
|
File without changes
|
{python_toolbox_przemek-0.4.0 → python_toolbox_przemek-0.4.2}/src/python_toolbox_przemek/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|