python-toolbox-przemek 0.1.1__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.1.1/PKG-INFO +30 -0
- python_toolbox_przemek-0.1.1/README.md +7 -0
- python_toolbox_przemek-0.1.1/pyproject.toml +26 -0
- python_toolbox_przemek-0.1.1/setup.cfg +4 -0
- python_toolbox_przemek-0.1.1/src/python_toolbox_przemek/__init__.py +3 -0
- python_toolbox_przemek-0.1.1/src/python_toolbox_przemek.egg-info/PKG-INFO +30 -0
- python_toolbox_przemek-0.1.1/src/python_toolbox_przemek.egg-info/SOURCES.txt +8 -0
- python_toolbox_przemek-0.1.1/src/python_toolbox_przemek.egg-info/dependency_links.txt +1 -0
- python_toolbox_przemek-0.1.1/src/python_toolbox_przemek.egg-info/requires.txt +20 -0
- python_toolbox_przemek-0.1.1/src/python_toolbox_przemek.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: python-toolbox-przemek
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: We want to provide basic tools for our day-to-day work.
|
|
5
|
+
Author: przemek@sagalo.pro
|
|
6
|
+
Requires-Python: <4,>=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: poetry==2.1.1
|
|
9
|
+
Provides-Extra: nvim
|
|
10
|
+
Requires-Dist: pynvim==0.5.2; extra == "nvim"
|
|
11
|
+
Provides-Extra: debug
|
|
12
|
+
Requires-Dist: debugpy==1.8.14; extra == "debug"
|
|
13
|
+
Provides-Extra: lint
|
|
14
|
+
Requires-Dist: black==24.2.0; extra == "lint"
|
|
15
|
+
Requires-Dist: isort==5.13.2; extra == "lint"
|
|
16
|
+
Requires-Dist: nbqa==1.9.1; extra == "lint"
|
|
17
|
+
Provides-Extra: notebook
|
|
18
|
+
Requires-Dist: nbstripout==0.8.1; extra == "notebook"
|
|
19
|
+
Requires-Dist: jupytext==1.17.0; extra == "notebook"
|
|
20
|
+
Requires-Dist: ipykernel==6.29.5; extra == "notebook"
|
|
21
|
+
Provides-Extra: tests
|
|
22
|
+
Requires-Dist: coverage==7.8.2; extra == "tests"
|
|
23
|
+
|
|
24
|
+
# Python Toolbox Przemek
|
|
25
|
+
I want to provide basic tools for my day-to-day work.
|
|
26
|
+
|
|
27
|
+
## Basic usage
|
|
28
|
+
```
|
|
29
|
+
pip install "python-toolbox-przemek[debug,nvim]"
|
|
30
|
+
```
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "python-toolbox-przemek"
|
|
3
|
+
version = "0.1.1"
|
|
4
|
+
description = "We want to provide basic tools for our day-to-day work."
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "przemek@sagalo.pro"}
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
|
|
10
|
+
requires-python = ">=3.11,<4"
|
|
11
|
+
|
|
12
|
+
dependencies = [
|
|
13
|
+
"poetry==2.1.1"
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.optional-dependencies]
|
|
17
|
+
nvim = [ "pynvim==0.5.2" ]
|
|
18
|
+
debug = [ "debugpy==1.8.14" ]
|
|
19
|
+
lint = [ "black==24.2.0", "isort==5.13.2", "nbqa==1.9.1" ]
|
|
20
|
+
notebook = [ "nbstripout==0.8.1", "jupytext==1.17.0", "ipykernel==6.29.5" ]
|
|
21
|
+
tests = [ "coverage==7.8.2" ]
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["setuptools >= 79.0.1"]
|
|
26
|
+
build-backend = "setuptools.build_meta"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: python-toolbox-przemek
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: We want to provide basic tools for our day-to-day work.
|
|
5
|
+
Author: przemek@sagalo.pro
|
|
6
|
+
Requires-Python: <4,>=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: poetry==2.1.1
|
|
9
|
+
Provides-Extra: nvim
|
|
10
|
+
Requires-Dist: pynvim==0.5.2; extra == "nvim"
|
|
11
|
+
Provides-Extra: debug
|
|
12
|
+
Requires-Dist: debugpy==1.8.14; extra == "debug"
|
|
13
|
+
Provides-Extra: lint
|
|
14
|
+
Requires-Dist: black==24.2.0; extra == "lint"
|
|
15
|
+
Requires-Dist: isort==5.13.2; extra == "lint"
|
|
16
|
+
Requires-Dist: nbqa==1.9.1; extra == "lint"
|
|
17
|
+
Provides-Extra: notebook
|
|
18
|
+
Requires-Dist: nbstripout==0.8.1; extra == "notebook"
|
|
19
|
+
Requires-Dist: jupytext==1.17.0; extra == "notebook"
|
|
20
|
+
Requires-Dist: ipykernel==6.29.5; extra == "notebook"
|
|
21
|
+
Provides-Extra: tests
|
|
22
|
+
Requires-Dist: coverage==7.8.2; extra == "tests"
|
|
23
|
+
|
|
24
|
+
# Python Toolbox Przemek
|
|
25
|
+
I want to provide basic tools for my day-to-day work.
|
|
26
|
+
|
|
27
|
+
## Basic usage
|
|
28
|
+
```
|
|
29
|
+
pip install "python-toolbox-przemek[debug,nvim]"
|
|
30
|
+
```
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/python_toolbox_przemek/__init__.py
|
|
4
|
+
src/python_toolbox_przemek.egg-info/PKG-INFO
|
|
5
|
+
src/python_toolbox_przemek.egg-info/SOURCES.txt
|
|
6
|
+
src/python_toolbox_przemek.egg-info/dependency_links.txt
|
|
7
|
+
src/python_toolbox_przemek.egg-info/requires.txt
|
|
8
|
+
src/python_toolbox_przemek.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
poetry==2.1.1
|
|
2
|
+
|
|
3
|
+
[debug]
|
|
4
|
+
debugpy==1.8.14
|
|
5
|
+
|
|
6
|
+
[lint]
|
|
7
|
+
black==24.2.0
|
|
8
|
+
isort==5.13.2
|
|
9
|
+
nbqa==1.9.1
|
|
10
|
+
|
|
11
|
+
[notebook]
|
|
12
|
+
nbstripout==0.8.1
|
|
13
|
+
jupytext==1.17.0
|
|
14
|
+
ipykernel==6.29.5
|
|
15
|
+
|
|
16
|
+
[nvim]
|
|
17
|
+
pynvim==0.5.2
|
|
18
|
+
|
|
19
|
+
[tests]
|
|
20
|
+
coverage==7.8.2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
python_toolbox_przemek
|