prefect-submitit 0.1.0__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.
- prefect_submitit-0.1.0/.claude/settings.local.json +12 -0
- prefect_submitit-0.1.0/LICENSE +29 -0
- prefect_submitit-0.1.0/PKG-INFO +47 -0
- prefect_submitit-0.1.0/README.md +37 -0
- prefect_submitit-0.1.0/pixi.lock +1100 -0
- prefect_submitit-0.1.0/pyproject.toml +78 -0
- prefect_submitit-0.1.0/src/prefect_submitit/__init__.py +3 -0
- prefect_submitit-0.1.0/tests/__init__.py +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(pixi install)",
|
|
5
|
+
"Bash(pixi run python -c \"import prefect_slurm; print\\('Installed successfully'\\)\")",
|
|
6
|
+
"Bash(git -C /Users/andrewhunt/git/prefect-submitit status)",
|
|
7
|
+
"Bash(git -C /Users/andrewhunt/git/prefect-submitit diff)",
|
|
8
|
+
"Bash(git -C /Users/andrewhunt/git/prefect-submitit log --oneline -5)",
|
|
9
|
+
"Bash(pixi run python -c \"import prefect_submitit; print\\('Installed successfully'\\)\")"
|
|
10
|
+
]
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026, Andrew Hunt
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: prefect-submitit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Prefect submitit integration
|
|
5
|
+
Maintainer-email: Andrew Hunt <andrewcolinhunt@gmail.com>
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# prefect-submitit
|
|
12
|
+
|
|
13
|
+
Prefect submitit integration.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
**Prerequisites:** Python 3.12+, [Pixi](https://pixi.sh)
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# Install Pixi (if needed)
|
|
23
|
+
curl -fsSL https://pixi.sh/install.sh | bash
|
|
24
|
+
|
|
25
|
+
# Clone and install
|
|
26
|
+
git clone https://github.com/andrewhunt/prefect-submitit.git
|
|
27
|
+
cd prefect-submitit
|
|
28
|
+
pixi install
|
|
29
|
+
|
|
30
|
+
# Verify
|
|
31
|
+
pixi run python -c "import prefect_submitit; print('Installed successfully')"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Development
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pixi run -e dev test # Run tests
|
|
40
|
+
pixi run -e dev fmt # Format and lint
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
BSD 3-Clause. See [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# prefect-submitit
|
|
2
|
+
|
|
3
|
+
Prefect submitit integration.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
**Prerequisites:** Python 3.12+, [Pixi](https://pixi.sh)
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# Install Pixi (if needed)
|
|
13
|
+
curl -fsSL https://pixi.sh/install.sh | bash
|
|
14
|
+
|
|
15
|
+
# Clone and install
|
|
16
|
+
git clone https://github.com/andrewhunt/prefect-submitit.git
|
|
17
|
+
cd prefect-submitit
|
|
18
|
+
pixi install
|
|
19
|
+
|
|
20
|
+
# Verify
|
|
21
|
+
pixi run python -c "import prefect_submitit; print('Installed successfully')"
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Development
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pixi run -e dev test # Run tests
|
|
30
|
+
pixi run -e dev fmt # Format and lint
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
BSD 3-Clause. See [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,1100 @@
|
|
|
1
|
+
version: 6
|
|
2
|
+
environments:
|
|
3
|
+
default:
|
|
4
|
+
channels:
|
|
5
|
+
- url: https://conda.anaconda.org/conda-forge/
|
|
6
|
+
indexes:
|
|
7
|
+
- https://pypi.org/simple
|
|
8
|
+
packages:
|
|
9
|
+
linux-64:
|
|
10
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
|
|
11
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
|
|
12
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
|
|
13
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
|
|
14
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
|
|
15
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
|
|
16
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
|
|
17
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
|
|
18
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
|
|
19
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
|
|
20
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
|
|
21
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
|
|
22
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.51.2-hf4e2dac_0.conda
|
|
23
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
|
|
24
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
|
|
25
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
|
26
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
27
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
28
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
|
|
29
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hd63d673_2_cpython.conda
|
|
30
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
|
|
31
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda
|
|
32
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
|
|
33
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
|
|
34
|
+
- pypi: ./
|
|
35
|
+
osx-arm64:
|
|
36
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda
|
|
37
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
|
|
38
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.2-h38cb7af_0.conda
|
|
39
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.4-hf6b4638_0.conda
|
|
40
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda
|
|
41
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.2-h8088a28_0.conda
|
|
42
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.51.2-h1ae2325_0.conda
|
|
43
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
44
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
45
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.1-hd24854e_1.conda
|
|
46
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.12-h18782d2_2_cpython.conda
|
|
47
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda
|
|
48
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda
|
|
49
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
|
|
50
|
+
- pypi: ./
|
|
51
|
+
dev:
|
|
52
|
+
channels:
|
|
53
|
+
- url: https://conda.anaconda.org/conda-forge/
|
|
54
|
+
indexes:
|
|
55
|
+
- https://pypi.org/simple
|
|
56
|
+
packages:
|
|
57
|
+
linux-64:
|
|
58
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
|
|
59
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
|
|
60
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
|
|
61
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
|
|
62
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
|
|
63
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
|
|
64
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
|
|
65
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
|
|
66
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
|
|
67
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
|
|
68
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
|
|
69
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
|
|
70
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
|
|
71
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
|
|
72
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
|
|
73
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.51.2-hf4e2dac_0.conda
|
|
74
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
|
|
75
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
|
|
76
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
|
77
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
78
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
79
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
|
|
80
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
|
|
81
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
|
|
82
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
|
|
83
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
|
|
84
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hd63d673_2_cpython.conda
|
|
85
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
|
|
86
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.15.2-h40fa522_0.conda
|
|
87
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda
|
|
88
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
|
|
89
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
|
|
90
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
|
|
91
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
|
|
92
|
+
- pypi: https://files.pythonhosted.org/packages/c5/0d/84a4380f930db0010168e0aa7b7a8fed9ba1835a8fbb1472bc6d0201d529/build-1.4.0-py3-none-any.whl
|
|
93
|
+
- pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
|
|
94
|
+
- pypi: https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
|
|
95
|
+
- pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
96
|
+
- pypi: https://files.pythonhosted.org/packages/6b/e7/237155ae19a9023de7e30ec64e5d99a9431a567407ac21170a046d22a5a3/cryptography-46.0.5-cp311-abi3-manylinux_2_28_x86_64.whl
|
|
97
|
+
- pypi: https://files.pythonhosted.org/packages/02/10/5da547df7a391dcde17f59520a231527b8571e6f46fc8efb02ccb370ab12/docutils-0.22.4-py3-none-any.whl
|
|
98
|
+
- pypi: https://files.pythonhosted.org/packages/42/77/de194443bf38daed9452139e960c632b0ef9f9a5dd9ce605fdf18ca9f1b1/id-1.6.1-py3-none-any.whl
|
|
99
|
+
- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
|
|
100
|
+
- pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl
|
|
101
|
+
- pypi: https://files.pythonhosted.org/packages/8d/48/aa685dbf1024c7bd82bede569e3a85f82c32fd3d79ba5fea578f0159571a/jaraco_context-6.1.0-py3-none-any.whl
|
|
102
|
+
- pypi: https://files.pythonhosted.org/packages/fd/c4/813bb09f0985cb21e959f21f2464169eca882656849adf727ac7bb7e1767/jaraco_functools-4.4.0-py3-none-any.whl
|
|
103
|
+
- pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl
|
|
104
|
+
- pypi: https://files.pythonhosted.org/packages/81/db/e655086b7f3a705df045bf0933bdd9c2f79bb3c97bfef1384598bb79a217/keyring-25.7.0-py3-none-any.whl
|
|
105
|
+
- pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl
|
|
106
|
+
- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl
|
|
107
|
+
- pypi: https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl
|
|
108
|
+
- pypi: https://files.pythonhosted.org/packages/6f/84/c0dc75c7fb596135f999e59a410d9f45bdabb989f1cb911f0016d22b747b/nh3-0.3.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
109
|
+
- pypi: https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl
|
|
110
|
+
- pypi: https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl
|
|
111
|
+
- pypi: https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl
|
|
112
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
113
|
+
- pypi: https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl
|
|
114
|
+
- pypi: https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl
|
|
115
|
+
- pypi: https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl
|
|
116
|
+
- pypi: https://files.pythonhosted.org/packages/b7/46/f5af3402b579fd5e11573ce652019a67074317e18c1935cc0b4ba9b35552/secretstorage-3.5.0-py3-none-any.whl
|
|
117
|
+
- pypi: https://files.pythonhosted.org/packages/3a/7a/882d99539b19b1490cac5d77c67338d126e4122c8276bf640e411650c830/twine-6.2.0-py3-none-any.whl
|
|
118
|
+
- pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
|
|
119
|
+
- pypi: ./
|
|
120
|
+
osx-arm64:
|
|
121
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda
|
|
122
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
|
|
123
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
|
|
124
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
|
|
125
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.2-h38cb7af_0.conda
|
|
126
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
|
|
127
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.4-hf6b4638_0.conda
|
|
128
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda
|
|
129
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.2-h8088a28_0.conda
|
|
130
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.51.2-h1ae2325_0.conda
|
|
131
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
132
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
133
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.1-hd24854e_1.conda
|
|
134
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
|
|
135
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
|
|
136
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
|
|
137
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
|
|
138
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.12-h18782d2_2_cpython.conda
|
|
139
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda
|
|
140
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.15.2-h279115b_0.conda
|
|
141
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda
|
|
142
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
|
|
143
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
|
|
144
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
|
|
145
|
+
- pypi: https://files.pythonhosted.org/packages/c5/0d/84a4380f930db0010168e0aa7b7a8fed9ba1835a8fbb1472bc6d0201d529/build-1.4.0-py3-none-any.whl
|
|
146
|
+
- pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
|
|
147
|
+
- pypi: https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl
|
|
148
|
+
- pypi: https://files.pythonhosted.org/packages/02/10/5da547df7a391dcde17f59520a231527b8571e6f46fc8efb02ccb370ab12/docutils-0.22.4-py3-none-any.whl
|
|
149
|
+
- pypi: https://files.pythonhosted.org/packages/42/77/de194443bf38daed9452139e960c632b0ef9f9a5dd9ce605fdf18ca9f1b1/id-1.6.1-py3-none-any.whl
|
|
150
|
+
- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
|
|
151
|
+
- pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl
|
|
152
|
+
- pypi: https://files.pythonhosted.org/packages/8d/48/aa685dbf1024c7bd82bede569e3a85f82c32fd3d79ba5fea578f0159571a/jaraco_context-6.1.0-py3-none-any.whl
|
|
153
|
+
- pypi: https://files.pythonhosted.org/packages/fd/c4/813bb09f0985cb21e959f21f2464169eca882656849adf727ac7bb7e1767/jaraco_functools-4.4.0-py3-none-any.whl
|
|
154
|
+
- pypi: https://files.pythonhosted.org/packages/81/db/e655086b7f3a705df045bf0933bdd9c2f79bb3c97bfef1384598bb79a217/keyring-25.7.0-py3-none-any.whl
|
|
155
|
+
- pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl
|
|
156
|
+
- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl
|
|
157
|
+
- pypi: https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl
|
|
158
|
+
- pypi: https://files.pythonhosted.org/packages/13/3e/aef8cf8e0419b530c95e96ae93a5078e9b36c1e6613eeb1df03a80d5194e/nh3-0.3.3-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
|
|
159
|
+
- pypi: https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl
|
|
160
|
+
- pypi: https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl
|
|
161
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
162
|
+
- pypi: https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl
|
|
163
|
+
- pypi: https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl
|
|
164
|
+
- pypi: https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl
|
|
165
|
+
- pypi: https://files.pythonhosted.org/packages/3a/7a/882d99539b19b1490cac5d77c67338d126e4122c8276bf640e411650c830/twine-6.2.0-py3-none-any.whl
|
|
166
|
+
- pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
|
|
167
|
+
- pypi: ./
|
|
168
|
+
packages:
|
|
169
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
|
|
170
|
+
build_number: 20
|
|
171
|
+
sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9
|
|
172
|
+
md5: a9f577daf3de00bca7c3c76c0ecbd1de
|
|
173
|
+
depends:
|
|
174
|
+
- __glibc >=2.17,<3.0.a0
|
|
175
|
+
- libgomp >=7.5.0
|
|
176
|
+
constrains:
|
|
177
|
+
- openmp_impl <0.0a0
|
|
178
|
+
license: BSD-3-Clause
|
|
179
|
+
license_family: BSD
|
|
180
|
+
purls: []
|
|
181
|
+
size: 28948
|
|
182
|
+
timestamp: 1770939786096
|
|
183
|
+
- pypi: https://files.pythonhosted.org/packages/c5/0d/84a4380f930db0010168e0aa7b7a8fed9ba1835a8fbb1472bc6d0201d529/build-1.4.0-py3-none-any.whl
|
|
184
|
+
name: build
|
|
185
|
+
version: 1.4.0
|
|
186
|
+
sha256: 6a07c1b8eb6f2b311b96fcbdbce5dab5fe637ffda0fd83c9cac622e927501596
|
|
187
|
+
requires_dist:
|
|
188
|
+
- packaging>=24.0
|
|
189
|
+
- pyproject-hooks
|
|
190
|
+
- colorama ; os_name == 'nt'
|
|
191
|
+
- importlib-metadata>=4.6 ; python_full_version < '3.10.2'
|
|
192
|
+
- tomli>=1.1.0 ; python_full_version < '3.11'
|
|
193
|
+
- uv>=0.1.18 ; extra == 'uv'
|
|
194
|
+
- virtualenv>=20.11 ; python_full_version < '3.10' and extra == 'virtualenv'
|
|
195
|
+
- virtualenv>=20.17 ; python_full_version >= '3.10' and python_full_version < '3.14' and extra == 'virtualenv'
|
|
196
|
+
- virtualenv>=20.31 ; python_full_version >= '3.14' and extra == 'virtualenv'
|
|
197
|
+
requires_python: '>=3.9'
|
|
198
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
|
|
199
|
+
sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
|
|
200
|
+
md5: d2ffd7602c02f2b316fd921d39876885
|
|
201
|
+
depends:
|
|
202
|
+
- __glibc >=2.17,<3.0.a0
|
|
203
|
+
- libgcc >=14
|
|
204
|
+
license: bzip2-1.0.6
|
|
205
|
+
license_family: BSD
|
|
206
|
+
purls: []
|
|
207
|
+
size: 260182
|
|
208
|
+
timestamp: 1771350215188
|
|
209
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda
|
|
210
|
+
sha256: 540fe54be35fac0c17feefbdc3e29725cce05d7367ffedfaaa1bdda234b019df
|
|
211
|
+
md5: 620b85a3f45526a8bc4d23fd78fc22f0
|
|
212
|
+
depends:
|
|
213
|
+
- __osx >=11.0
|
|
214
|
+
license: bzip2-1.0.6
|
|
215
|
+
license_family: BSD
|
|
216
|
+
purls: []
|
|
217
|
+
size: 124834
|
|
218
|
+
timestamp: 1771350416561
|
|
219
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
|
|
220
|
+
sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2
|
|
221
|
+
md5: bddacf101bb4dd0e51811cb69c7790e2
|
|
222
|
+
depends:
|
|
223
|
+
- __unix
|
|
224
|
+
license: ISC
|
|
225
|
+
purls: []
|
|
226
|
+
size: 146519
|
|
227
|
+
timestamp: 1767500828366
|
|
228
|
+
- pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
|
|
229
|
+
name: certifi
|
|
230
|
+
version: 2026.1.4
|
|
231
|
+
sha256: 9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c
|
|
232
|
+
requires_python: '>=3.7'
|
|
233
|
+
- pypi: https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
|
|
234
|
+
name: cffi
|
|
235
|
+
version: 2.0.0
|
|
236
|
+
sha256: 3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba
|
|
237
|
+
requires_dist:
|
|
238
|
+
- pycparser ; implementation_name != 'PyPy'
|
|
239
|
+
requires_python: '>=3.9'
|
|
240
|
+
- pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
241
|
+
name: charset-normalizer
|
|
242
|
+
version: 3.4.4
|
|
243
|
+
sha256: 11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86
|
|
244
|
+
requires_python: '>=3.7'
|
|
245
|
+
- pypi: https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl
|
|
246
|
+
name: charset-normalizer
|
|
247
|
+
version: 3.4.4
|
|
248
|
+
sha256: 0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394
|
|
249
|
+
requires_python: '>=3.7'
|
|
250
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
|
|
251
|
+
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
|
|
252
|
+
md5: 962b9857ee8e7018c22f2776ffa0b2d7
|
|
253
|
+
depends:
|
|
254
|
+
- python >=3.9
|
|
255
|
+
license: BSD-3-Clause
|
|
256
|
+
license_family: BSD
|
|
257
|
+
purls:
|
|
258
|
+
- pkg:pypi/colorama?source=hash-mapping
|
|
259
|
+
size: 27011
|
|
260
|
+
timestamp: 1733218222191
|
|
261
|
+
- pypi: https://files.pythonhosted.org/packages/6b/e7/237155ae19a9023de7e30ec64e5d99a9431a567407ac21170a046d22a5a3/cryptography-46.0.5-cp311-abi3-manylinux_2_28_x86_64.whl
|
|
262
|
+
name: cryptography
|
|
263
|
+
version: 46.0.5
|
|
264
|
+
sha256: 3ee190460e2fbe447175cda91b88b84ae8322a104fc27766ad09428754a618ed
|
|
265
|
+
requires_dist:
|
|
266
|
+
- cffi>=1.14 ; python_full_version == '3.8.*' and platform_python_implementation != 'PyPy'
|
|
267
|
+
- cffi>=2.0.0 ; python_full_version >= '3.9' and platform_python_implementation != 'PyPy'
|
|
268
|
+
- typing-extensions>=4.13.2 ; python_full_version < '3.11'
|
|
269
|
+
- bcrypt>=3.1.5 ; extra == 'ssh'
|
|
270
|
+
- nox[uv]>=2024.4.15 ; extra == 'nox'
|
|
271
|
+
- cryptography-vectors==46.0.5 ; extra == 'test'
|
|
272
|
+
- pytest>=7.4.0 ; extra == 'test'
|
|
273
|
+
- pytest-benchmark>=4.0 ; extra == 'test'
|
|
274
|
+
- pytest-cov>=2.10.1 ; extra == 'test'
|
|
275
|
+
- pytest-xdist>=3.5.0 ; extra == 'test'
|
|
276
|
+
- pretend>=0.7 ; extra == 'test'
|
|
277
|
+
- certifi>=2024 ; extra == 'test'
|
|
278
|
+
- pytest-randomly ; extra == 'test-randomorder'
|
|
279
|
+
- sphinx>=5.3.0 ; extra == 'docs'
|
|
280
|
+
- sphinx-rtd-theme>=3.0.0 ; extra == 'docs'
|
|
281
|
+
- sphinx-inline-tabs ; extra == 'docs'
|
|
282
|
+
- pyenchant>=3 ; extra == 'docstest'
|
|
283
|
+
- readme-renderer>=30.0 ; extra == 'docstest'
|
|
284
|
+
- sphinxcontrib-spelling>=7.3.1 ; extra == 'docstest'
|
|
285
|
+
- build>=1.0.0 ; extra == 'sdist'
|
|
286
|
+
- ruff>=0.11.11 ; extra == 'pep8test'
|
|
287
|
+
- mypy>=1.14 ; extra == 'pep8test'
|
|
288
|
+
- check-sdist ; extra == 'pep8test'
|
|
289
|
+
- click>=8.0.1 ; extra == 'pep8test'
|
|
290
|
+
requires_python: '>=3.8,!=3.9.0,!=3.9.1'
|
|
291
|
+
- pypi: https://files.pythonhosted.org/packages/02/10/5da547df7a391dcde17f59520a231527b8571e6f46fc8efb02ccb370ab12/docutils-0.22.4-py3-none-any.whl
|
|
292
|
+
name: docutils
|
|
293
|
+
version: 0.22.4
|
|
294
|
+
sha256: d0013f540772d1420576855455d050a2180186c91c15779301ac2ccb3eeb68de
|
|
295
|
+
requires_python: '>=3.9'
|
|
296
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
|
|
297
|
+
sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
|
|
298
|
+
md5: 8e662bd460bda79b1ea39194e3c4c9ab
|
|
299
|
+
depends:
|
|
300
|
+
- python >=3.10
|
|
301
|
+
- typing_extensions >=4.6.0
|
|
302
|
+
license: MIT and PSF-2.0
|
|
303
|
+
purls:
|
|
304
|
+
- pkg:pypi/exceptiongroup?source=hash-mapping
|
|
305
|
+
size: 21333
|
|
306
|
+
timestamp: 1763918099466
|
|
307
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
|
|
308
|
+
sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329
|
|
309
|
+
md5: 186a18e3ba246eccfc7cff00cd19a870
|
|
310
|
+
depends:
|
|
311
|
+
- __glibc >=2.17,<3.0.a0
|
|
312
|
+
- libgcc >=14
|
|
313
|
+
- libstdcxx >=14
|
|
314
|
+
license: MIT
|
|
315
|
+
license_family: MIT
|
|
316
|
+
purls: []
|
|
317
|
+
size: 12728445
|
|
318
|
+
timestamp: 1767969922681
|
|
319
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.2-h38cb7af_0.conda
|
|
320
|
+
sha256: d4cefbca587429d1192509edc52c88de52bc96c2447771ddc1f8bee928aed5ef
|
|
321
|
+
md5: 1e93aca311da0210e660d2247812fa02
|
|
322
|
+
depends:
|
|
323
|
+
- __osx >=11.0
|
|
324
|
+
license: MIT
|
|
325
|
+
license_family: MIT
|
|
326
|
+
purls: []
|
|
327
|
+
size: 12358010
|
|
328
|
+
timestamp: 1767970350308
|
|
329
|
+
- pypi: https://files.pythonhosted.org/packages/42/77/de194443bf38daed9452139e960c632b0ef9f9a5dd9ce605fdf18ca9f1b1/id-1.6.1-py3-none-any.whl
|
|
330
|
+
name: id
|
|
331
|
+
version: 1.6.1
|
|
332
|
+
sha256: f5ec41ed2629a508f5d0988eda142e190c9c6da971100612c4de9ad9f9b237ca
|
|
333
|
+
requires_dist:
|
|
334
|
+
- urllib3>=2,<3
|
|
335
|
+
- build ; extra == 'dev'
|
|
336
|
+
- bump>=1.3.2 ; extra == 'dev'
|
|
337
|
+
- id[test,lint] ; extra == 'dev'
|
|
338
|
+
- bandit ; extra == 'lint'
|
|
339
|
+
- interrogate ; extra == 'lint'
|
|
340
|
+
- mypy ; extra == 'lint'
|
|
341
|
+
- ruff<0.14.15 ; extra == 'lint'
|
|
342
|
+
- pytest ; extra == 'test'
|
|
343
|
+
- pytest-cov ; extra == 'test'
|
|
344
|
+
- pretend ; extra == 'test'
|
|
345
|
+
- coverage[toml] ; extra == 'test'
|
|
346
|
+
requires_python: '>=3.9'
|
|
347
|
+
- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
|
|
348
|
+
name: idna
|
|
349
|
+
version: '3.11'
|
|
350
|
+
sha256: 771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea
|
|
351
|
+
requires_dist:
|
|
352
|
+
- ruff>=0.6.2 ; extra == 'all'
|
|
353
|
+
- mypy>=1.11.2 ; extra == 'all'
|
|
354
|
+
- pytest>=8.3.2 ; extra == 'all'
|
|
355
|
+
- flake8>=7.1.1 ; extra == 'all'
|
|
356
|
+
requires_python: '>=3.8'
|
|
357
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
|
|
358
|
+
sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19
|
|
359
|
+
md5: 9614359868482abba1bd15ce465e3c42
|
|
360
|
+
depends:
|
|
361
|
+
- python >=3.10
|
|
362
|
+
license: MIT
|
|
363
|
+
license_family: MIT
|
|
364
|
+
purls:
|
|
365
|
+
- pkg:pypi/iniconfig?source=compressed-mapping
|
|
366
|
+
size: 13387
|
|
367
|
+
timestamp: 1760831448842
|
|
368
|
+
- pypi: https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl
|
|
369
|
+
name: jaraco-classes
|
|
370
|
+
version: 3.4.0
|
|
371
|
+
sha256: f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790
|
|
372
|
+
requires_dist:
|
|
373
|
+
- more-itertools
|
|
374
|
+
- sphinx>=3.5 ; extra == 'docs'
|
|
375
|
+
- jaraco-packaging>=9.3 ; extra == 'docs'
|
|
376
|
+
- rst-linker>=1.9 ; extra == 'docs'
|
|
377
|
+
- furo ; extra == 'docs'
|
|
378
|
+
- sphinx-lint ; extra == 'docs'
|
|
379
|
+
- jaraco-tidelift>=1.4 ; extra == 'docs'
|
|
380
|
+
- pytest>=6 ; extra == 'testing'
|
|
381
|
+
- pytest-checkdocs>=2.4 ; extra == 'testing'
|
|
382
|
+
- pytest-cov ; extra == 'testing'
|
|
383
|
+
- pytest-mypy ; extra == 'testing'
|
|
384
|
+
- pytest-enabler>=2.2 ; extra == 'testing'
|
|
385
|
+
- pytest-ruff>=0.2.1 ; extra == 'testing'
|
|
386
|
+
requires_python: '>=3.8'
|
|
387
|
+
- pypi: https://files.pythonhosted.org/packages/8d/48/aa685dbf1024c7bd82bede569e3a85f82c32fd3d79ba5fea578f0159571a/jaraco_context-6.1.0-py3-none-any.whl
|
|
388
|
+
name: jaraco-context
|
|
389
|
+
version: 6.1.0
|
|
390
|
+
sha256: a43b5ed85815223d0d3cfdb6d7ca0d2bc8946f28f30b6f3216bda070f68badda
|
|
391
|
+
requires_dist:
|
|
392
|
+
- backports-tarfile ; python_full_version < '3.12'
|
|
393
|
+
- pytest>=6,!=8.1.* ; extra == 'test'
|
|
394
|
+
- jaraco-test>=5.6.0 ; extra == 'test'
|
|
395
|
+
- portend ; extra == 'test'
|
|
396
|
+
- sphinx>=3.5 ; extra == 'doc'
|
|
397
|
+
- jaraco-packaging>=9.3 ; extra == 'doc'
|
|
398
|
+
- rst-linker>=1.9 ; extra == 'doc'
|
|
399
|
+
- furo ; extra == 'doc'
|
|
400
|
+
- sphinx-lint ; extra == 'doc'
|
|
401
|
+
- jaraco-tidelift>=1.4 ; extra == 'doc'
|
|
402
|
+
- pytest-checkdocs>=2.4 ; extra == 'check'
|
|
403
|
+
- pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check'
|
|
404
|
+
- pytest-cov ; extra == 'cover'
|
|
405
|
+
- pytest-enabler>=3.4 ; extra == 'enabler'
|
|
406
|
+
- pytest-mypy>=1.0.1 ; extra == 'type'
|
|
407
|
+
- mypy<1.19 ; platform_python_implementation == 'PyPy' and extra == 'type'
|
|
408
|
+
requires_python: '>=3.9'
|
|
409
|
+
- pypi: https://files.pythonhosted.org/packages/fd/c4/813bb09f0985cb21e959f21f2464169eca882656849adf727ac7bb7e1767/jaraco_functools-4.4.0-py3-none-any.whl
|
|
410
|
+
name: jaraco-functools
|
|
411
|
+
version: 4.4.0
|
|
412
|
+
sha256: 9eec1e36f45c818d9bf307c8948eb03b2b56cd44087b3cdc989abca1f20b9176
|
|
413
|
+
requires_dist:
|
|
414
|
+
- more-itertools
|
|
415
|
+
- pytest>=6,!=8.1.* ; extra == 'test'
|
|
416
|
+
- jaraco-classes ; extra == 'test'
|
|
417
|
+
- sphinx>=3.5 ; extra == 'doc'
|
|
418
|
+
- jaraco-packaging>=9.3 ; extra == 'doc'
|
|
419
|
+
- rst-linker>=1.9 ; extra == 'doc'
|
|
420
|
+
- furo ; extra == 'doc'
|
|
421
|
+
- sphinx-lint ; extra == 'doc'
|
|
422
|
+
- jaraco-tidelift>=1.4 ; extra == 'doc'
|
|
423
|
+
- pytest-checkdocs>=2.4 ; extra == 'check'
|
|
424
|
+
- pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check'
|
|
425
|
+
- pytest-cov ; extra == 'cover'
|
|
426
|
+
- pytest-enabler>=3.4 ; extra == 'enabler'
|
|
427
|
+
- pytest-mypy>=1.0.1 ; extra == 'type'
|
|
428
|
+
- mypy<1.19 ; platform_python_implementation == 'PyPy' and extra == 'type'
|
|
429
|
+
requires_python: '>=3.9'
|
|
430
|
+
- pypi: https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl
|
|
431
|
+
name: jeepney
|
|
432
|
+
version: 0.9.0
|
|
433
|
+
sha256: 97e5714520c16fc0a45695e5365a2e11b81ea79bba796e26f9f1d178cb182683
|
|
434
|
+
requires_dist:
|
|
435
|
+
- pytest ; extra == 'test'
|
|
436
|
+
- pytest-trio ; extra == 'test'
|
|
437
|
+
- pytest-asyncio>=0.17 ; extra == 'test'
|
|
438
|
+
- testpath ; extra == 'test'
|
|
439
|
+
- trio ; extra == 'test'
|
|
440
|
+
- async-timeout ; python_full_version < '3.11' and extra == 'test'
|
|
441
|
+
- trio ; extra == 'trio'
|
|
442
|
+
requires_python: '>=3.7'
|
|
443
|
+
- pypi: https://files.pythonhosted.org/packages/81/db/e655086b7f3a705df045bf0933bdd9c2f79bb3c97bfef1384598bb79a217/keyring-25.7.0-py3-none-any.whl
|
|
444
|
+
name: keyring
|
|
445
|
+
version: 25.7.0
|
|
446
|
+
sha256: be4a0b195f149690c166e850609a477c532ddbfbaed96a404d4e43f8d5e2689f
|
|
447
|
+
requires_dist:
|
|
448
|
+
- pywin32-ctypes>=0.2.0 ; sys_platform == 'win32'
|
|
449
|
+
- secretstorage>=3.2 ; sys_platform == 'linux'
|
|
450
|
+
- jeepney>=0.4.2 ; sys_platform == 'linux'
|
|
451
|
+
- importlib-metadata>=4.11.4 ; python_full_version < '3.12'
|
|
452
|
+
- jaraco-classes
|
|
453
|
+
- jaraco-functools
|
|
454
|
+
- jaraco-context
|
|
455
|
+
- pytest>=6,!=8.1.* ; extra == 'test'
|
|
456
|
+
- pyfakefs ; extra == 'test'
|
|
457
|
+
- sphinx>=3.5 ; extra == 'doc'
|
|
458
|
+
- jaraco-packaging>=9.3 ; extra == 'doc'
|
|
459
|
+
- rst-linker>=1.9 ; extra == 'doc'
|
|
460
|
+
- furo ; extra == 'doc'
|
|
461
|
+
- sphinx-lint ; extra == 'doc'
|
|
462
|
+
- jaraco-tidelift>=1.4 ; extra == 'doc'
|
|
463
|
+
- pytest-checkdocs>=2.4 ; extra == 'check'
|
|
464
|
+
- pytest-ruff>=0.2.1 ; sys_platform != 'cygwin' and extra == 'check'
|
|
465
|
+
- pytest-cov ; extra == 'cover'
|
|
466
|
+
- pytest-enabler>=3.4 ; extra == 'enabler'
|
|
467
|
+
- pytest-mypy>=1.0.1 ; extra == 'type'
|
|
468
|
+
- pygobject-stubs ; extra == 'type'
|
|
469
|
+
- shtab ; extra == 'type'
|
|
470
|
+
- types-pywin32 ; extra == 'type'
|
|
471
|
+
- shtab>=1.1.0 ; extra == 'completion'
|
|
472
|
+
requires_python: '>=3.9'
|
|
473
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
|
|
474
|
+
sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
|
|
475
|
+
md5: 12bd9a3f089ee6c9266a37dab82afabd
|
|
476
|
+
depends:
|
|
477
|
+
- __glibc >=2.17,<3.0.a0
|
|
478
|
+
- zstd >=1.5.7,<1.6.0a0
|
|
479
|
+
constrains:
|
|
480
|
+
- binutils_impl_linux-64 2.45.1
|
|
481
|
+
license: GPL-3.0-only
|
|
482
|
+
license_family: GPL
|
|
483
|
+
purls: []
|
|
484
|
+
size: 725507
|
|
485
|
+
timestamp: 1770267139900
|
|
486
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
|
|
487
|
+
sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5
|
|
488
|
+
md5: e7f7ce06ec24cfcfb9e36d28cf82ba57
|
|
489
|
+
depends:
|
|
490
|
+
- __glibc >=2.17,<3.0.a0
|
|
491
|
+
- libgcc >=14
|
|
492
|
+
constrains:
|
|
493
|
+
- expat 2.7.4.*
|
|
494
|
+
license: MIT
|
|
495
|
+
license_family: MIT
|
|
496
|
+
purls: []
|
|
497
|
+
size: 76798
|
|
498
|
+
timestamp: 1771259418166
|
|
499
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.4-hf6b4638_0.conda
|
|
500
|
+
sha256: 03887d8080d6a8fe02d75b80929271b39697ecca7628f0657d7afaea87761edf
|
|
501
|
+
md5: a92e310ae8dfc206ff449f362fc4217f
|
|
502
|
+
depends:
|
|
503
|
+
- __osx >=11.0
|
|
504
|
+
constrains:
|
|
505
|
+
- expat 2.7.4.*
|
|
506
|
+
license: MIT
|
|
507
|
+
license_family: MIT
|
|
508
|
+
purls: []
|
|
509
|
+
size: 68199
|
|
510
|
+
timestamp: 1771260020767
|
|
511
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
|
|
512
|
+
sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6
|
|
513
|
+
md5: a360c33a5abe61c07959e449fa1453eb
|
|
514
|
+
depends:
|
|
515
|
+
- __glibc >=2.17,<3.0.a0
|
|
516
|
+
- libgcc >=14
|
|
517
|
+
license: MIT
|
|
518
|
+
license_family: MIT
|
|
519
|
+
purls: []
|
|
520
|
+
size: 58592
|
|
521
|
+
timestamp: 1769456073053
|
|
522
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda
|
|
523
|
+
sha256: 6686a26466a527585e6a75cc2a242bf4a3d97d6d6c86424a441677917f28bec7
|
|
524
|
+
md5: 43c04d9cb46ef176bb2a4c77e324d599
|
|
525
|
+
depends:
|
|
526
|
+
- __osx >=11.0
|
|
527
|
+
license: MIT
|
|
528
|
+
license_family: MIT
|
|
529
|
+
purls: []
|
|
530
|
+
size: 40979
|
|
531
|
+
timestamp: 1769456747661
|
|
532
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
|
|
533
|
+
sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
|
|
534
|
+
md5: 0aa00f03f9e39fb9876085dee11a85d4
|
|
535
|
+
depends:
|
|
536
|
+
- __glibc >=2.17,<3.0.a0
|
|
537
|
+
- _openmp_mutex >=4.5
|
|
538
|
+
constrains:
|
|
539
|
+
- libgcc-ng ==15.2.0=*_18
|
|
540
|
+
- libgomp 15.2.0 he0feb66_18
|
|
541
|
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
542
|
+
license_family: GPL
|
|
543
|
+
purls: []
|
|
544
|
+
size: 1041788
|
|
545
|
+
timestamp: 1771378212382
|
|
546
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
|
|
547
|
+
sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893
|
|
548
|
+
md5: d5e96b1ed75ca01906b3d2469b4ce493
|
|
549
|
+
depends:
|
|
550
|
+
- libgcc 15.2.0 he0feb66_18
|
|
551
|
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
552
|
+
license_family: GPL
|
|
553
|
+
purls: []
|
|
554
|
+
size: 27526
|
|
555
|
+
timestamp: 1771378224552
|
|
556
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
|
|
557
|
+
sha256: 21337ab58e5e0649d869ab168d4e609b033509de22521de1bfed0c031bfc5110
|
|
558
|
+
md5: 239c5e9546c38a1e884d69effcf4c882
|
|
559
|
+
depends:
|
|
560
|
+
- __glibc >=2.17,<3.0.a0
|
|
561
|
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
562
|
+
license_family: GPL
|
|
563
|
+
purls: []
|
|
564
|
+
size: 603262
|
|
565
|
+
timestamp: 1771378117851
|
|
566
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
|
|
567
|
+
sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb
|
|
568
|
+
md5: c7c83eecbb72d88b940c249af56c8b17
|
|
569
|
+
depends:
|
|
570
|
+
- __glibc >=2.17,<3.0.a0
|
|
571
|
+
- libgcc >=14
|
|
572
|
+
constrains:
|
|
573
|
+
- xz 5.8.2.*
|
|
574
|
+
license: 0BSD
|
|
575
|
+
purls: []
|
|
576
|
+
size: 113207
|
|
577
|
+
timestamp: 1768752626120
|
|
578
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.2-h8088a28_0.conda
|
|
579
|
+
sha256: 7bfc7ffb2d6a9629357a70d4eadeadb6f88fa26ebc28f606b1c1e5e5ed99dc7e
|
|
580
|
+
md5: 009f0d956d7bfb00de86901d16e486c7
|
|
581
|
+
depends:
|
|
582
|
+
- __osx >=11.0
|
|
583
|
+
constrains:
|
|
584
|
+
- xz 5.8.2.*
|
|
585
|
+
license: 0BSD
|
|
586
|
+
purls: []
|
|
587
|
+
size: 92242
|
|
588
|
+
timestamp: 1768752982486
|
|
589
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
|
|
590
|
+
sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5
|
|
591
|
+
md5: d864d34357c3b65a4b731f78c0801dc4
|
|
592
|
+
depends:
|
|
593
|
+
- __glibc >=2.17,<3.0.a0
|
|
594
|
+
- libgcc >=13
|
|
595
|
+
license: LGPL-2.1-only
|
|
596
|
+
license_family: GPL
|
|
597
|
+
purls: []
|
|
598
|
+
size: 33731
|
|
599
|
+
timestamp: 1750274110928
|
|
600
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.51.2-hf4e2dac_0.conda
|
|
601
|
+
sha256: 04596fcee262a870e4b7c9807224680ff48d4d0cc0dac076a602503d3dc6d217
|
|
602
|
+
md5: da5be73701eecd0e8454423fd6ffcf30
|
|
603
|
+
depends:
|
|
604
|
+
- __glibc >=2.17,<3.0.a0
|
|
605
|
+
- icu >=78.2,<79.0a0
|
|
606
|
+
- libgcc >=14
|
|
607
|
+
- libzlib >=1.3.1,<2.0a0
|
|
608
|
+
license: blessing
|
|
609
|
+
purls: []
|
|
610
|
+
size: 942808
|
|
611
|
+
timestamp: 1768147973361
|
|
612
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.51.2-h1ae2325_0.conda
|
|
613
|
+
sha256: 6e9b9f269732cbc4698c7984aa5b9682c168e2a8d1e0406e1ff10091ca046167
|
|
614
|
+
md5: 4b0bf313c53c3e89692f020fb55d5f2c
|
|
615
|
+
depends:
|
|
616
|
+
- __osx >=11.0
|
|
617
|
+
- icu >=78.2,<79.0a0
|
|
618
|
+
- libzlib >=1.3.1,<2.0a0
|
|
619
|
+
license: blessing
|
|
620
|
+
purls: []
|
|
621
|
+
size: 909777
|
|
622
|
+
timestamp: 1768148320535
|
|
623
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
|
|
624
|
+
sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
|
|
625
|
+
md5: 1b08cd684f34175e4514474793d44bcb
|
|
626
|
+
depends:
|
|
627
|
+
- __glibc >=2.17,<3.0.a0
|
|
628
|
+
- libgcc 15.2.0 he0feb66_18
|
|
629
|
+
constrains:
|
|
630
|
+
- libstdcxx-ng ==15.2.0=*_18
|
|
631
|
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
|
632
|
+
license_family: GPL
|
|
633
|
+
purls: []
|
|
634
|
+
size: 5852330
|
|
635
|
+
timestamp: 1771378262446
|
|
636
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
|
|
637
|
+
sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee
|
|
638
|
+
md5: db409b7c1720428638e7c0d509d3e1b5
|
|
639
|
+
depends:
|
|
640
|
+
- __glibc >=2.17,<3.0.a0
|
|
641
|
+
- libgcc >=14
|
|
642
|
+
license: BSD-3-Clause
|
|
643
|
+
license_family: BSD
|
|
644
|
+
purls: []
|
|
645
|
+
size: 40311
|
|
646
|
+
timestamp: 1766271528534
|
|
647
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
|
648
|
+
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
|
|
649
|
+
md5: 5aa797f8787fe7a17d1b0821485b5adc
|
|
650
|
+
depends:
|
|
651
|
+
- libgcc-ng >=12
|
|
652
|
+
license: LGPL-2.1-or-later
|
|
653
|
+
purls: []
|
|
654
|
+
size: 100393
|
|
655
|
+
timestamp: 1702724383534
|
|
656
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
657
|
+
sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
|
|
658
|
+
md5: edb0dca6bc32e4f4789199455a1dbeb8
|
|
659
|
+
depends:
|
|
660
|
+
- __glibc >=2.17,<3.0.a0
|
|
661
|
+
- libgcc >=13
|
|
662
|
+
constrains:
|
|
663
|
+
- zlib 1.3.1 *_2
|
|
664
|
+
license: Zlib
|
|
665
|
+
license_family: Other
|
|
666
|
+
purls: []
|
|
667
|
+
size: 60963
|
|
668
|
+
timestamp: 1727963148474
|
|
669
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
670
|
+
sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b
|
|
671
|
+
md5: 369964e85dc26bfe78f41399b366c435
|
|
672
|
+
depends:
|
|
673
|
+
- __osx >=11.0
|
|
674
|
+
constrains:
|
|
675
|
+
- zlib 1.3.1 *_2
|
|
676
|
+
license: Zlib
|
|
677
|
+
license_family: Other
|
|
678
|
+
purls: []
|
|
679
|
+
size: 46438
|
|
680
|
+
timestamp: 1727963202283
|
|
681
|
+
- pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl
|
|
682
|
+
name: markdown-it-py
|
|
683
|
+
version: 4.0.0
|
|
684
|
+
sha256: 87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147
|
|
685
|
+
requires_dist:
|
|
686
|
+
- mdurl~=0.1
|
|
687
|
+
- psutil ; extra == 'benchmarking'
|
|
688
|
+
- pytest ; extra == 'benchmarking'
|
|
689
|
+
- pytest-benchmark ; extra == 'benchmarking'
|
|
690
|
+
- commonmark~=0.9 ; extra == 'compare'
|
|
691
|
+
- markdown~=3.4 ; extra == 'compare'
|
|
692
|
+
- mistletoe~=1.0 ; extra == 'compare'
|
|
693
|
+
- mistune~=3.0 ; extra == 'compare'
|
|
694
|
+
- panflute~=2.3 ; extra == 'compare'
|
|
695
|
+
- markdown-it-pyrs ; extra == 'compare'
|
|
696
|
+
- linkify-it-py>=1,<3 ; extra == 'linkify'
|
|
697
|
+
- mdit-py-plugins>=0.5.0 ; extra == 'plugins'
|
|
698
|
+
- gprof2dot ; extra == 'profiling'
|
|
699
|
+
- mdit-py-plugins>=0.5.0 ; extra == 'rtd'
|
|
700
|
+
- myst-parser ; extra == 'rtd'
|
|
701
|
+
- pyyaml ; extra == 'rtd'
|
|
702
|
+
- sphinx ; extra == 'rtd'
|
|
703
|
+
- sphinx-copybutton ; extra == 'rtd'
|
|
704
|
+
- sphinx-design ; extra == 'rtd'
|
|
705
|
+
- sphinx-book-theme~=1.0 ; extra == 'rtd'
|
|
706
|
+
- jupyter-sphinx ; extra == 'rtd'
|
|
707
|
+
- ipykernel ; extra == 'rtd'
|
|
708
|
+
- coverage ; extra == 'testing'
|
|
709
|
+
- pytest ; extra == 'testing'
|
|
710
|
+
- pytest-cov ; extra == 'testing'
|
|
711
|
+
- pytest-regressions ; extra == 'testing'
|
|
712
|
+
- requests ; extra == 'testing'
|
|
713
|
+
requires_python: '>=3.10'
|
|
714
|
+
- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl
|
|
715
|
+
name: mdurl
|
|
716
|
+
version: 0.1.2
|
|
717
|
+
sha256: 84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8
|
|
718
|
+
requires_python: '>=3.7'
|
|
719
|
+
- pypi: https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl
|
|
720
|
+
name: more-itertools
|
|
721
|
+
version: 10.8.0
|
|
722
|
+
sha256: 52d4362373dcf7c52546bc4af9a86ee7c4579df9a8dc268be0a2f949d376cc9b
|
|
723
|
+
requires_python: '>=3.9'
|
|
724
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
725
|
+
sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
|
|
726
|
+
md5: 47e340acb35de30501a76c7c799c41d7
|
|
727
|
+
depends:
|
|
728
|
+
- __glibc >=2.17,<3.0.a0
|
|
729
|
+
- libgcc >=13
|
|
730
|
+
license: X11 AND BSD-3-Clause
|
|
731
|
+
purls: []
|
|
732
|
+
size: 891641
|
|
733
|
+
timestamp: 1738195959188
|
|
734
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
735
|
+
sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733
|
|
736
|
+
md5: 068d497125e4bf8a66bf707254fff5ae
|
|
737
|
+
depends:
|
|
738
|
+
- __osx >=11.0
|
|
739
|
+
license: X11 AND BSD-3-Clause
|
|
740
|
+
purls: []
|
|
741
|
+
size: 797030
|
|
742
|
+
timestamp: 1738196177597
|
|
743
|
+
- pypi: https://files.pythonhosted.org/packages/13/3e/aef8cf8e0419b530c95e96ae93a5078e9b36c1e6613eeb1df03a80d5194e/nh3-0.3.3-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
|
|
744
|
+
name: nh3
|
|
745
|
+
version: 0.3.3
|
|
746
|
+
sha256: e8ee96156f7dfc6e30ecda650e480c5ae0a7d38f0c6fafc3c1c655e2500421d9
|
|
747
|
+
requires_python: '>=3.8'
|
|
748
|
+
- pypi: https://files.pythonhosted.org/packages/6f/84/c0dc75c7fb596135f999e59a410d9f45bdabb989f1cb911f0016d22b747b/nh3-0.3.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
749
|
+
name: nh3
|
|
750
|
+
version: 0.3.3
|
|
751
|
+
sha256: e98fa3dbfd54e25487e36ba500bc29bca3a4cab4ffba18cfb1a35a2d02624297
|
|
752
|
+
requires_python: '>=3.8'
|
|
753
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
|
|
754
|
+
sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c
|
|
755
|
+
md5: f61eb8cd60ff9057122a3d338b99c00f
|
|
756
|
+
depends:
|
|
757
|
+
- __glibc >=2.17,<3.0.a0
|
|
758
|
+
- ca-certificates
|
|
759
|
+
- libgcc >=14
|
|
760
|
+
license: Apache-2.0
|
|
761
|
+
license_family: Apache
|
|
762
|
+
purls: []
|
|
763
|
+
size: 3164551
|
|
764
|
+
timestamp: 1769555830639
|
|
765
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.1-hd24854e_1.conda
|
|
766
|
+
sha256: 361f5c5e60052abc12bdd1b50d7a1a43e6a6653aab99a2263bf2288d709dcf67
|
|
767
|
+
md5: f4f6ad63f98f64191c3e77c5f5f29d76
|
|
768
|
+
depends:
|
|
769
|
+
- __osx >=11.0
|
|
770
|
+
- ca-certificates
|
|
771
|
+
license: Apache-2.0
|
|
772
|
+
license_family: Apache
|
|
773
|
+
purls: []
|
|
774
|
+
size: 3104268
|
|
775
|
+
timestamp: 1769556384749
|
|
776
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
|
|
777
|
+
sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
|
|
778
|
+
md5: b76541e68fea4d511b1ac46a28dcd2c6
|
|
779
|
+
depends:
|
|
780
|
+
- python >=3.8
|
|
781
|
+
- python
|
|
782
|
+
license: Apache-2.0
|
|
783
|
+
license_family: APACHE
|
|
784
|
+
purls:
|
|
785
|
+
- pkg:pypi/packaging?source=compressed-mapping
|
|
786
|
+
size: 72010
|
|
787
|
+
timestamp: 1769093650580
|
|
788
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
|
|
789
|
+
sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
|
|
790
|
+
md5: d7585b6550ad04c8c5e21097ada2888e
|
|
791
|
+
depends:
|
|
792
|
+
- python >=3.9
|
|
793
|
+
- python
|
|
794
|
+
license: MIT
|
|
795
|
+
license_family: MIT
|
|
796
|
+
purls:
|
|
797
|
+
- pkg:pypi/pluggy?source=compressed-mapping
|
|
798
|
+
size: 25877
|
|
799
|
+
timestamp: 1764896838868
|
|
800
|
+
- pypi: ./
|
|
801
|
+
name: prefect-submitit
|
|
802
|
+
version: 0.1.0
|
|
803
|
+
sha256: cf2c24b4db5dfa461acbcb7c38846e7f4b813c8b5ebe2939b538d5296a98dc84
|
|
804
|
+
requires_python: '>=3.12'
|
|
805
|
+
editable: true
|
|
806
|
+
- pypi: https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl
|
|
807
|
+
name: pycparser
|
|
808
|
+
version: '3.0'
|
|
809
|
+
sha256: b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992
|
|
810
|
+
requires_python: '>=3.10'
|
|
811
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
|
|
812
|
+
sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
|
|
813
|
+
md5: 6b6ece66ebcae2d5f326c77ef2c5a066
|
|
814
|
+
depends:
|
|
815
|
+
- python >=3.9
|
|
816
|
+
license: BSD-2-Clause
|
|
817
|
+
license_family: BSD
|
|
818
|
+
purls:
|
|
819
|
+
- pkg:pypi/pygments?source=hash-mapping
|
|
820
|
+
size: 889287
|
|
821
|
+
timestamp: 1750615908735
|
|
822
|
+
- pypi: https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl
|
|
823
|
+
name: pyproject-hooks
|
|
824
|
+
version: 1.2.0
|
|
825
|
+
sha256: 9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913
|
|
826
|
+
requires_python: '>=3.7'
|
|
827
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
|
|
828
|
+
sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
|
|
829
|
+
md5: 2b694bad8a50dc2f712f5368de866480
|
|
830
|
+
depends:
|
|
831
|
+
- pygments >=2.7.2
|
|
832
|
+
- python >=3.10
|
|
833
|
+
- iniconfig >=1.0.1
|
|
834
|
+
- packaging >=22
|
|
835
|
+
- pluggy >=1.5,<2
|
|
836
|
+
- tomli >=1
|
|
837
|
+
- colorama >=0.4
|
|
838
|
+
- exceptiongroup >=1
|
|
839
|
+
- python
|
|
840
|
+
constrains:
|
|
841
|
+
- pytest-faulthandler >=2
|
|
842
|
+
license: MIT
|
|
843
|
+
license_family: MIT
|
|
844
|
+
purls:
|
|
845
|
+
- pkg:pypi/pytest?source=hash-mapping
|
|
846
|
+
size: 299581
|
|
847
|
+
timestamp: 1765062031645
|
|
848
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hd63d673_2_cpython.conda
|
|
849
|
+
build_number: 2
|
|
850
|
+
sha256: 6621befd6570a216ba94bc34ec4618e4f3777de55ad0adc15fc23c28fadd4d1a
|
|
851
|
+
md5: c4540d3de3fa228d9fa95e31f8e97f89
|
|
852
|
+
depends:
|
|
853
|
+
- __glibc >=2.17,<3.0.a0
|
|
854
|
+
- bzip2 >=1.0.8,<2.0a0
|
|
855
|
+
- ld_impl_linux-64 >=2.36.1
|
|
856
|
+
- libexpat >=2.7.3,<3.0a0
|
|
857
|
+
- libffi >=3.5.2,<3.6.0a0
|
|
858
|
+
- libgcc >=14
|
|
859
|
+
- liblzma >=5.8.2,<6.0a0
|
|
860
|
+
- libnsl >=2.0.1,<2.1.0a0
|
|
861
|
+
- libsqlite >=3.51.2,<4.0a0
|
|
862
|
+
- libuuid >=2.41.3,<3.0a0
|
|
863
|
+
- libxcrypt >=4.4.36
|
|
864
|
+
- libzlib >=1.3.1,<2.0a0
|
|
865
|
+
- ncurses >=6.5,<7.0a0
|
|
866
|
+
- openssl >=3.5.4,<4.0a0
|
|
867
|
+
- readline >=8.3,<9.0a0
|
|
868
|
+
- tk >=8.6.13,<8.7.0a0
|
|
869
|
+
- tzdata
|
|
870
|
+
constrains:
|
|
871
|
+
- python_abi 3.12.* *_cp312
|
|
872
|
+
license: Python-2.0
|
|
873
|
+
purls: []
|
|
874
|
+
size: 31457785
|
|
875
|
+
timestamp: 1769472855343
|
|
876
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.12-h18782d2_2_cpython.conda
|
|
877
|
+
build_number: 2
|
|
878
|
+
sha256: 765e5d0f92dabc8c468d078a4409490e08181a6f9be6f5d5802a4e3131b9a69c
|
|
879
|
+
md5: e198b8f74b12292d138eb4eceb004fa3
|
|
880
|
+
depends:
|
|
881
|
+
- __osx >=11.0
|
|
882
|
+
- bzip2 >=1.0.8,<2.0a0
|
|
883
|
+
- libexpat >=2.7.3,<3.0a0
|
|
884
|
+
- libffi >=3.5.2,<3.6.0a0
|
|
885
|
+
- liblzma >=5.8.2,<6.0a0
|
|
886
|
+
- libsqlite >=3.51.2,<4.0a0
|
|
887
|
+
- libzlib >=1.3.1,<2.0a0
|
|
888
|
+
- ncurses >=6.5,<7.0a0
|
|
889
|
+
- openssl >=3.5.4,<4.0a0
|
|
890
|
+
- readline >=8.3,<9.0a0
|
|
891
|
+
- tk >=8.6.13,<8.7.0a0
|
|
892
|
+
- tzdata
|
|
893
|
+
constrains:
|
|
894
|
+
- python_abi 3.12.* *_cp312
|
|
895
|
+
license: Python-2.0
|
|
896
|
+
purls: []
|
|
897
|
+
size: 12953358
|
|
898
|
+
timestamp: 1769472376612
|
|
899
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
|
|
900
|
+
sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002
|
|
901
|
+
md5: d7d95fc8287ea7bf33e0e7116d2b95ec
|
|
902
|
+
depends:
|
|
903
|
+
- __glibc >=2.17,<3.0.a0
|
|
904
|
+
- libgcc >=14
|
|
905
|
+
- ncurses >=6.5,<7.0a0
|
|
906
|
+
license: GPL-3.0-only
|
|
907
|
+
license_family: GPL
|
|
908
|
+
purls: []
|
|
909
|
+
size: 345073
|
|
910
|
+
timestamp: 1765813471974
|
|
911
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda
|
|
912
|
+
sha256: a77010528efb4b548ac2a4484eaf7e1c3907f2aec86123ed9c5212ae44502477
|
|
913
|
+
md5: f8381319127120ce51e081dce4865cf4
|
|
914
|
+
depends:
|
|
915
|
+
- __osx >=11.0
|
|
916
|
+
- ncurses >=6.5,<7.0a0
|
|
917
|
+
license: GPL-3.0-only
|
|
918
|
+
license_family: GPL
|
|
919
|
+
purls: []
|
|
920
|
+
size: 313930
|
|
921
|
+
timestamp: 1765813902568
|
|
922
|
+
- pypi: https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl
|
|
923
|
+
name: readme-renderer
|
|
924
|
+
version: '44.0'
|
|
925
|
+
sha256: 2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151
|
|
926
|
+
requires_dist:
|
|
927
|
+
- nh3>=0.2.14
|
|
928
|
+
- docutils>=0.21.2
|
|
929
|
+
- pygments>=2.5.1
|
|
930
|
+
- cmarkgfm>=0.8.0 ; extra == 'md'
|
|
931
|
+
requires_python: '>=3.9'
|
|
932
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
933
|
+
name: requests
|
|
934
|
+
version: 2.32.5
|
|
935
|
+
sha256: 2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6
|
|
936
|
+
requires_dist:
|
|
937
|
+
- charset-normalizer>=2,<4
|
|
938
|
+
- idna>=2.5,<4
|
|
939
|
+
- urllib3>=1.21.1,<3
|
|
940
|
+
- certifi>=2017.4.17
|
|
941
|
+
- pysocks>=1.5.6,!=1.5.7 ; extra == 'socks'
|
|
942
|
+
- chardet>=3.0.2,<6 ; extra == 'use-chardet-on-py3'
|
|
943
|
+
requires_python: '>=3.9'
|
|
944
|
+
- pypi: https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl
|
|
945
|
+
name: requests-toolbelt
|
|
946
|
+
version: 1.0.0
|
|
947
|
+
sha256: cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06
|
|
948
|
+
requires_dist:
|
|
949
|
+
- requests>=2.0.1,<3.0.0
|
|
950
|
+
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
|
|
951
|
+
- pypi: https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl
|
|
952
|
+
name: rfc3986
|
|
953
|
+
version: 2.0.0
|
|
954
|
+
sha256: 50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd
|
|
955
|
+
requires_dist:
|
|
956
|
+
- idna ; extra == 'idna2008'
|
|
957
|
+
requires_python: '>=3.7'
|
|
958
|
+
- pypi: https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl
|
|
959
|
+
name: rich
|
|
960
|
+
version: 14.3.3
|
|
961
|
+
sha256: 793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d
|
|
962
|
+
requires_dist:
|
|
963
|
+
- ipywidgets>=7.5.1,<9 ; extra == 'jupyter'
|
|
964
|
+
- markdown-it-py>=2.2.0
|
|
965
|
+
- pygments>=2.13.0,<3.0.0
|
|
966
|
+
requires_python: '>=3.8.0'
|
|
967
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.15.2-h40fa522_0.conda
|
|
968
|
+
noarch: python
|
|
969
|
+
sha256: e0403324ac0de06f51c76ae2a4671255d48551a813d1f1dc03bd4db7364604f0
|
|
970
|
+
md5: 8dec25bd8a94496202f6f3c9085f2ad3
|
|
971
|
+
depends:
|
|
972
|
+
- python
|
|
973
|
+
- __glibc >=2.17,<3.0.a0
|
|
974
|
+
- libgcc >=14
|
|
975
|
+
constrains:
|
|
976
|
+
- __glibc >=2.17
|
|
977
|
+
license: MIT
|
|
978
|
+
license_family: MIT
|
|
979
|
+
purls:
|
|
980
|
+
- pkg:pypi/ruff?source=hash-mapping
|
|
981
|
+
size: 9284016
|
|
982
|
+
timestamp: 1771570005837
|
|
983
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.15.2-h279115b_0.conda
|
|
984
|
+
noarch: python
|
|
985
|
+
sha256: 80f93811d26e58bf5a635d1034cba8497223c2bf9efa2a67776a18903e40944a
|
|
986
|
+
md5: a52cf978daa5290b1414d3bba6b6ea0b
|
|
987
|
+
depends:
|
|
988
|
+
- python
|
|
989
|
+
- __osx >=11.0
|
|
990
|
+
constrains:
|
|
991
|
+
- __osx >=11.0
|
|
992
|
+
license: MIT
|
|
993
|
+
license_family: MIT
|
|
994
|
+
purls:
|
|
995
|
+
- pkg:pypi/ruff?source=hash-mapping
|
|
996
|
+
size: 8415205
|
|
997
|
+
timestamp: 1771570140500
|
|
998
|
+
- pypi: https://files.pythonhosted.org/packages/b7/46/f5af3402b579fd5e11573ce652019a67074317e18c1935cc0b4ba9b35552/secretstorage-3.5.0-py3-none-any.whl
|
|
999
|
+
name: secretstorage
|
|
1000
|
+
version: 3.5.0
|
|
1001
|
+
sha256: 0ce65888c0725fcb2c5bc0fdb8e5438eece02c523557ea40ce0703c266248137
|
|
1002
|
+
requires_dist:
|
|
1003
|
+
- cryptography>=2.0
|
|
1004
|
+
- jeepney>=0.6
|
|
1005
|
+
requires_python: '>=3.10'
|
|
1006
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda
|
|
1007
|
+
sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac
|
|
1008
|
+
md5: cffd3bdd58090148f4cfcd831f4b26ab
|
|
1009
|
+
depends:
|
|
1010
|
+
- __glibc >=2.17,<3.0.a0
|
|
1011
|
+
- libgcc >=14
|
|
1012
|
+
- libzlib >=1.3.1,<2.0a0
|
|
1013
|
+
constrains:
|
|
1014
|
+
- xorg-libx11 >=1.8.12,<2.0a0
|
|
1015
|
+
license: TCL
|
|
1016
|
+
license_family: BSD
|
|
1017
|
+
purls: []
|
|
1018
|
+
size: 3301196
|
|
1019
|
+
timestamp: 1769460227866
|
|
1020
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda
|
|
1021
|
+
sha256: 799cab4b6cde62f91f750149995d149bc9db525ec12595e8a1d91b9317f038b3
|
|
1022
|
+
md5: a9d86bc62f39b94c4661716624eb21b0
|
|
1023
|
+
depends:
|
|
1024
|
+
- __osx >=11.0
|
|
1025
|
+
- libzlib >=1.3.1,<2.0a0
|
|
1026
|
+
license: TCL
|
|
1027
|
+
license_family: BSD
|
|
1028
|
+
purls: []
|
|
1029
|
+
size: 3127137
|
|
1030
|
+
timestamp: 1769460817696
|
|
1031
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
|
|
1032
|
+
sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
|
|
1033
|
+
md5: 72e780e9aa2d0a3295f59b1874e3768b
|
|
1034
|
+
depends:
|
|
1035
|
+
- python >=3.10
|
|
1036
|
+
- python
|
|
1037
|
+
license: MIT
|
|
1038
|
+
license_family: MIT
|
|
1039
|
+
purls:
|
|
1040
|
+
- pkg:pypi/tomli?source=compressed-mapping
|
|
1041
|
+
size: 21453
|
|
1042
|
+
timestamp: 1768146676791
|
|
1043
|
+
- pypi: https://files.pythonhosted.org/packages/3a/7a/882d99539b19b1490cac5d77c67338d126e4122c8276bf640e411650c830/twine-6.2.0-py3-none-any.whl
|
|
1044
|
+
name: twine
|
|
1045
|
+
version: 6.2.0
|
|
1046
|
+
sha256: 418ebf08ccda9a8caaebe414433b0ba5e25eb5e4a927667122fbe8f829f985d8
|
|
1047
|
+
requires_dist:
|
|
1048
|
+
- readme-renderer>=35.0
|
|
1049
|
+
- requests>=2.20
|
|
1050
|
+
- requests-toolbelt>=0.8.0,!=0.9.0
|
|
1051
|
+
- urllib3>=1.26.0
|
|
1052
|
+
- importlib-metadata>=3.6 ; python_full_version < '3.10'
|
|
1053
|
+
- keyring>=21.2.0 ; platform_machine != 'ppc64le' and platform_machine != 's390x'
|
|
1054
|
+
- rfc3986>=1.4.0
|
|
1055
|
+
- rich>=12.0.0
|
|
1056
|
+
- packaging>=24.0
|
|
1057
|
+
- id
|
|
1058
|
+
- keyring>=21.2.0 ; extra == 'keyring'
|
|
1059
|
+
requires_python: '>=3.9'
|
|
1060
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
|
|
1061
|
+
sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
|
|
1062
|
+
md5: 0caa1af407ecff61170c9437a808404d
|
|
1063
|
+
depends:
|
|
1064
|
+
- python >=3.10
|
|
1065
|
+
- python
|
|
1066
|
+
license: PSF-2.0
|
|
1067
|
+
license_family: PSF
|
|
1068
|
+
purls:
|
|
1069
|
+
- pkg:pypi/typing-extensions?source=hash-mapping
|
|
1070
|
+
size: 51692
|
|
1071
|
+
timestamp: 1756220668932
|
|
1072
|
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
|
|
1073
|
+
sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
|
|
1074
|
+
md5: ad659d0a2b3e47e38d829aa8cad2d610
|
|
1075
|
+
license: LicenseRef-Public-Domain
|
|
1076
|
+
purls: []
|
|
1077
|
+
size: 119135
|
|
1078
|
+
timestamp: 1767016325805
|
|
1079
|
+
- pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
|
|
1080
|
+
name: urllib3
|
|
1081
|
+
version: 2.6.3
|
|
1082
|
+
sha256: bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4
|
|
1083
|
+
requires_dist:
|
|
1084
|
+
- brotli>=1.2.0 ; platform_python_implementation == 'CPython' and extra == 'brotli'
|
|
1085
|
+
- brotlicffi>=1.2.0.0 ; platform_python_implementation != 'CPython' and extra == 'brotli'
|
|
1086
|
+
- h2>=4,<5 ; extra == 'h2'
|
|
1087
|
+
- pysocks>=1.5.6,!=1.5.7,<2.0 ; extra == 'socks'
|
|
1088
|
+
- backports-zstd>=1.0.0 ; python_full_version < '3.14' and extra == 'zstd'
|
|
1089
|
+
requires_python: '>=3.9'
|
|
1090
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
|
|
1091
|
+
sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7
|
|
1092
|
+
md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829
|
|
1093
|
+
depends:
|
|
1094
|
+
- __glibc >=2.17,<3.0.a0
|
|
1095
|
+
- libzlib >=1.3.1,<2.0a0
|
|
1096
|
+
license: BSD-3-Clause
|
|
1097
|
+
license_family: BSD
|
|
1098
|
+
purls: []
|
|
1099
|
+
size: 601375
|
|
1100
|
+
timestamp: 1764777111296
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "prefect-submitit"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Prefect submitit integration"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "BSD-3-Clause"
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
maintainers = [
|
|
9
|
+
{ name = "Andrew Hunt", email = "andrewcolinhunt@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
dependencies = [] # All dependencies managed by Pixi
|
|
12
|
+
|
|
13
|
+
# Build settings --------------------------------------------------------------
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/prefect_submitit"]
|
|
20
|
+
|
|
21
|
+
[tool.pixi.workspace]
|
|
22
|
+
channels = ["conda-forge"]
|
|
23
|
+
platforms = ["linux-64", "osx-arm64"]
|
|
24
|
+
|
|
25
|
+
# =============================================================================
|
|
26
|
+
# DEFAULT ENVIRONMENT - Core runtime dependencies
|
|
27
|
+
# =============================================================================
|
|
28
|
+
[tool.pixi.dependencies]
|
|
29
|
+
python = "3.12.*"
|
|
30
|
+
|
|
31
|
+
[tool.pixi.pypi-dependencies]
|
|
32
|
+
prefect-submitit = { path = ".", editable = true }
|
|
33
|
+
|
|
34
|
+
# =============================================================================
|
|
35
|
+
# DEV FEATURE - Development tools (testing, linting)
|
|
36
|
+
# =============================================================================
|
|
37
|
+
[tool.pixi.feature.dev.dependencies]
|
|
38
|
+
pytest = "*"
|
|
39
|
+
ruff = ">=0.6"
|
|
40
|
+
|
|
41
|
+
[tool.pixi.feature.dev.pypi-dependencies]
|
|
42
|
+
build = ">=1.4.0,<2"
|
|
43
|
+
twine = ">=6.2.0,<7"
|
|
44
|
+
|
|
45
|
+
[tool.pixi.feature.dev.tasks]
|
|
46
|
+
test = "pytest"
|
|
47
|
+
fmt = "ruff format . && ruff check --fix ."
|
|
48
|
+
build-dist = "rm -rf dist/ && python -m build"
|
|
49
|
+
check-dist = "python -m twine check dist/*"
|
|
50
|
+
upload-pypi = "python -m twine upload dist/*"
|
|
51
|
+
|
|
52
|
+
# =============================================================================
|
|
53
|
+
# ENVIRONMENTS
|
|
54
|
+
# =============================================================================
|
|
55
|
+
[tool.pixi.environments]
|
|
56
|
+
default = { solve-group = "default" }
|
|
57
|
+
dev = { features = ["dev"], solve-group = "default" }
|
|
58
|
+
|
|
59
|
+
# =============================================================================
|
|
60
|
+
# TOOL CONFIGURATIONS
|
|
61
|
+
# =============================================================================
|
|
62
|
+
[tool.pytest.ini_options]
|
|
63
|
+
minversion = "7"
|
|
64
|
+
testpaths = ["tests"]
|
|
65
|
+
addopts = ["-ra", "--strict-config", "--strict-markers"]
|
|
66
|
+
|
|
67
|
+
[tool.ruff]
|
|
68
|
+
extend-exclude = [".pixi"]
|
|
69
|
+
|
|
70
|
+
[tool.ruff.lint]
|
|
71
|
+
extend-select = [
|
|
72
|
+
"B", # flake8-bugbear
|
|
73
|
+
"I", # isort
|
|
74
|
+
"UP", # pyupgrade
|
|
75
|
+
"RUF", # Ruff-specific
|
|
76
|
+
"SIM", # flake8-simplify
|
|
77
|
+
]
|
|
78
|
+
isort.required-imports = ["from __future__ import annotations"]
|
|
File without changes
|