which-profiler 0.0.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.
- which_profiler-0.0.1/.github/workflows/publish.yml +31 -0
- which_profiler-0.0.1/.gitignore +96 -0
- which_profiler-0.0.1/PKG-INFO +29 -0
- which_profiler-0.0.1/README.md +19 -0
- which_profiler-0.0.1/mise.lock +79 -0
- which_profiler-0.0.1/mise.toml +6 -0
- which_profiler-0.0.1/pyproject.toml +23 -0
- which_profiler-0.0.1/src/which_profiler/__init__.py +16 -0
- which_profiler-0.0.1/uv.lock +8 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
- uses: jdx/mise-action@v2
|
|
14
|
+
- run: uv build
|
|
15
|
+
- uses: actions/upload-artifact@v4
|
|
16
|
+
with:
|
|
17
|
+
name: dist
|
|
18
|
+
path: dist/
|
|
19
|
+
|
|
20
|
+
publish:
|
|
21
|
+
needs: build
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
environment: pypi
|
|
24
|
+
permissions:
|
|
25
|
+
id-token: write
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/download-artifact@v4
|
|
28
|
+
with:
|
|
29
|
+
name: dist
|
|
30
|
+
path: dist/
|
|
31
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
*.manifest
|
|
31
|
+
*.spec
|
|
32
|
+
|
|
33
|
+
# Installer logs
|
|
34
|
+
pip-log.txt
|
|
35
|
+
pip-delete-this-directory.txt
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.nox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
*.py.cover
|
|
48
|
+
*.lcov
|
|
49
|
+
.hypothesis/
|
|
50
|
+
.pytest_cache/
|
|
51
|
+
cover/
|
|
52
|
+
|
|
53
|
+
# Translations
|
|
54
|
+
*.mo
|
|
55
|
+
*.pot
|
|
56
|
+
|
|
57
|
+
# Sphinx documentation
|
|
58
|
+
docs/_build/
|
|
59
|
+
|
|
60
|
+
# PyBuilder
|
|
61
|
+
.pybuilder/
|
|
62
|
+
target/
|
|
63
|
+
|
|
64
|
+
# Jupyter Notebook
|
|
65
|
+
.ipynb_checkpoints
|
|
66
|
+
|
|
67
|
+
# IPython
|
|
68
|
+
profile_default/
|
|
69
|
+
ipython_config.py
|
|
70
|
+
|
|
71
|
+
# Environments
|
|
72
|
+
.env
|
|
73
|
+
.envrc
|
|
74
|
+
.venv
|
|
75
|
+
env/
|
|
76
|
+
venv/
|
|
77
|
+
ENV/
|
|
78
|
+
env.bak/
|
|
79
|
+
venv.bak/
|
|
80
|
+
|
|
81
|
+
# pytype static type analyzer
|
|
82
|
+
.pytype/
|
|
83
|
+
|
|
84
|
+
# mypy
|
|
85
|
+
.mypy_cache/
|
|
86
|
+
.dmypy.json
|
|
87
|
+
dmypy.json
|
|
88
|
+
|
|
89
|
+
# Pyre type checker
|
|
90
|
+
.pyre/
|
|
91
|
+
|
|
92
|
+
# Ruff
|
|
93
|
+
.ruff_cache/
|
|
94
|
+
|
|
95
|
+
# PyPI configuration file
|
|
96
|
+
.pypirc
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: which-profiler
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Which profiler, when? Find out at EuroPython 2026!
|
|
5
|
+
Project-URL: Homepage, https://ep2026.europython.eu/session/uvx-which-profiler-which-profiler-when/
|
|
6
|
+
Keywords: europython,performance,profiling
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# which-profiler
|
|
12
|
+
|
|
13
|
+
Come see the talk **"uvx which-profiler: Which Profiler, When?"** at EuroPython 2026:
|
|
14
|
+
|
|
15
|
+
EuroPython 2026, Kraków
|
|
16
|
+
|
|
17
|
+
📍 **Room S2**
|
|
18
|
+
|
|
19
|
+
📅 **Wednesday, 15 July 2026**
|
|
20
|
+
|
|
21
|
+
🕐 **15:25**
|
|
22
|
+
|
|
23
|
+
👉 https://ep2026.europython.eu/session/uvx-which-profiler-which-profiler-when/
|
|
24
|
+
|
|
25
|
+
ℹ️ The actual CLI will be made available with the talk.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
Run via `uvx which-profiler`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# which-profiler
|
|
2
|
+
|
|
3
|
+
Come see the talk **"uvx which-profiler: Which Profiler, When?"** at EuroPython 2026:
|
|
4
|
+
|
|
5
|
+
EuroPython 2026, Kraków
|
|
6
|
+
|
|
7
|
+
📍 **Room S2**
|
|
8
|
+
|
|
9
|
+
📅 **Wednesday, 15 July 2026**
|
|
10
|
+
|
|
11
|
+
🕐 **15:25**
|
|
12
|
+
|
|
13
|
+
👉 https://ep2026.europython.eu/session/uvx-which-profiler-which-profiler-when/
|
|
14
|
+
|
|
15
|
+
ℹ️ The actual CLI will be made available with the talk.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
Run via `uvx which-profiler`
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# @generated - this file is auto-generated by `mise lock` https://mise.en.dev/dev-tools/mise-lock.html
|
|
2
|
+
|
|
3
|
+
[[tools.python]]
|
|
4
|
+
version = "3.11.13"
|
|
5
|
+
backend = "core:python"
|
|
6
|
+
|
|
7
|
+
[tools.python."platforms.linux-arm64"]
|
|
8
|
+
checksum = "sha256:5b08be545d415a562caeab61255e5583935b33caf21c6eafabb4ea7db87239b2"
|
|
9
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-aarch64-unknown-linux-gnu-install_only_stripped.tar.gz"
|
|
10
|
+
provenance = "github-attestations"
|
|
11
|
+
|
|
12
|
+
[tools.python."platforms.linux-arm64-musl"]
|
|
13
|
+
checksum = "sha256:91c7e169e18a12e7c643ba6a6fe8333c8681bdfa553d9fc2404704e247b2f842"
|
|
14
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-aarch64-unknown-linux-musl-install_only_stripped.tar.gz"
|
|
15
|
+
provenance = "github-attestations"
|
|
16
|
+
|
|
17
|
+
[tools.python."platforms.linux-x64"]
|
|
18
|
+
checksum = "sha256:43bfc42529843ecd1d9c08c4a239ede348f96ff0acaef2ec24b28dc059f4f0c3"
|
|
19
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-x86_64-unknown-linux-gnu-install_only_stripped.tar.gz"
|
|
20
|
+
provenance = "github-attestations"
|
|
21
|
+
|
|
22
|
+
[tools.python."platforms.linux-x64-musl"]
|
|
23
|
+
checksum = "sha256:a7c1a4f125c130e7249b962412205ed05fef268ac0bbdc59d52f7f2d8730f6ec"
|
|
24
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-x86_64-unknown-linux-musl-install_only_stripped.tar.gz"
|
|
25
|
+
provenance = "github-attestations"
|
|
26
|
+
|
|
27
|
+
[tools.python."platforms.macos-arm64"]
|
|
28
|
+
checksum = "sha256:78bc6defdc1dac5bf6765c8f938e6849383dbed831ea1e2d11576a4683fb1e8c"
|
|
29
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-aarch64-apple-darwin-install_only_stripped.tar.gz"
|
|
30
|
+
provenance = "github-attestations"
|
|
31
|
+
|
|
32
|
+
[tools.python."platforms.macos-x64"]
|
|
33
|
+
checksum = "sha256:af2e93876eb643e71df9ca9210d23ff30127ef01f3213aab7d7b326c17df7e12"
|
|
34
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-x86_64-apple-darwin-install_only_stripped.tar.gz"
|
|
35
|
+
provenance = "github-attestations"
|
|
36
|
+
|
|
37
|
+
[tools.python."platforms.windows-x64"]
|
|
38
|
+
checksum = "sha256:cde5153f59a67d9e108f2ed964526e9aed100eba180f54bee0496b4fd73a8b29"
|
|
39
|
+
url = "https://github.com/astral-sh/python-build-standalone/releases/download/20251007/cpython-3.11.13+20251007-x86_64-pc-windows-msvc-install_only_stripped.tar.gz"
|
|
40
|
+
provenance = "github-attestations"
|
|
41
|
+
|
|
42
|
+
[[tools.uv]]
|
|
43
|
+
version = "0.11.14"
|
|
44
|
+
backend = "aqua:astral-sh/uv"
|
|
45
|
+
|
|
46
|
+
[tools.uv."platforms.linux-arm64"]
|
|
47
|
+
checksum = "sha256:d7d3966e46915c5f6932692aaf152a2473eecb1d2517ca4f8e88a07484b380b6"
|
|
48
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-aarch64-unknown-linux-musl.tar.gz"
|
|
49
|
+
provenance = "github-attestations"
|
|
50
|
+
|
|
51
|
+
[tools.uv."platforms.linux-arm64-musl"]
|
|
52
|
+
checksum = "sha256:d7d3966e46915c5f6932692aaf152a2473eecb1d2517ca4f8e88a07484b380b6"
|
|
53
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-aarch64-unknown-linux-musl.tar.gz"
|
|
54
|
+
provenance = "github-attestations"
|
|
55
|
+
|
|
56
|
+
[tools.uv."platforms.linux-x64"]
|
|
57
|
+
checksum = "sha256:077d36f45a0cc6d440b653b2d5c53e7731121e99e54b0221267eec5d1cae76ce"
|
|
58
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-x86_64-unknown-linux-musl.tar.gz"
|
|
59
|
+
provenance = "github-attestations"
|
|
60
|
+
|
|
61
|
+
[tools.uv."platforms.linux-x64-musl"]
|
|
62
|
+
checksum = "sha256:077d36f45a0cc6d440b653b2d5c53e7731121e99e54b0221267eec5d1cae76ce"
|
|
63
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-x86_64-unknown-linux-musl.tar.gz"
|
|
64
|
+
provenance = "github-attestations"
|
|
65
|
+
|
|
66
|
+
[tools.uv."platforms.macos-arm64"]
|
|
67
|
+
checksum = "sha256:4333af5c0730d94323a7819bbdf87ce92dd07fc857d67fff0059e0fca31b5c02"
|
|
68
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-aarch64-apple-darwin.tar.gz"
|
|
69
|
+
provenance = "github-attestations"
|
|
70
|
+
|
|
71
|
+
[tools.uv."platforms.macos-x64"]
|
|
72
|
+
checksum = "sha256:9836c1440b0bd6aa5f81793648a339bd01d593b7b8f575de3b855dae4ab64654"
|
|
73
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-x86_64-apple-darwin.tar.gz"
|
|
74
|
+
provenance = "github-attestations"
|
|
75
|
+
|
|
76
|
+
[tools.uv."platforms.windows-x64"]
|
|
77
|
+
checksum = "sha256:52ba5d19409aaa688a8a1a6ec8dfb6a4817230d20186e75f4006105c3e39a846"
|
|
78
|
+
url = "https://github.com/astral-sh/uv/releases/download/0.11.14/uv-x86_64-pc-windows-msvc.zip"
|
|
79
|
+
provenance = "github-attestations"
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "which-profiler"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Which profiler, when? Find out at EuroPython 2026!"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
keywords = ["profiling", "performance", "europython"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://ep2026.europython.eu/session/uvx-which-profiler-which-profiler-when/"
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
which-profiler = "which_profiler:main"
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
packages = ["src/which_profiler"]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
def main() -> None:
|
|
2
|
+
print(
|
|
3
|
+
"\n"
|
|
4
|
+
"🐍 which-profiler\n"
|
|
5
|
+
"\n"
|
|
6
|
+
" Come see 'uvx which-profiler: Which Profiler, When?' at EuroPython 2026!\n"
|
|
7
|
+
"\n"
|
|
8
|
+
" EuroPython 2026, Kraków\n"
|
|
9
|
+
" 📍 Room S2\n"
|
|
10
|
+
" 📅 Wednesday, 15 July 2026\n"
|
|
11
|
+
" 🕐 15:25\n"
|
|
12
|
+
"\n"
|
|
13
|
+
" https://ep2026.europython.eu/session/uvx-which-profiler-which-profiler-when/\n"
|
|
14
|
+
"\n"
|
|
15
|
+
" ℹ️ The actual CLI will be made available with the talk.\n"
|
|
16
|
+
)
|