fastsortedcontainers 0.0.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.
@@ -0,0 +1,40 @@
1
+ # Python
2
+ __pycache__/
3
+ *.egg-info/
4
+ dist/
5
+ .pytest_cache/
6
+ .ruff_cache/
7
+
8
+ # Coverage
9
+ htmlcov/
10
+ .coverage
11
+ reports/
12
+
13
+ # Virtual environments
14
+ .venv/
15
+
16
+ # Private dev docs
17
+ design/
18
+ .local/
19
+ local/
20
+
21
+ # IDE
22
+ .idea/
23
+ .vscode/
24
+
25
+ # OS
26
+ .DS_Store
27
+ ._*
28
+ Thumbs.db
29
+ Desktop.ini
30
+
31
+ # AI assistants
32
+ .claude/
33
+ CLAUDE.md
34
+ AGENTS.md
35
+ .cursor/
36
+ .cursorrules
37
+ .aider*
38
+ .copilot/
39
+ .github/copilot-instructions.md
40
+ .temp/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026, Bert Pluymers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastsortedcontainers
3
+ Version: 0.0.0
4
+ Summary: /
5
+ Project-URL: Source, https://github.com/bertpl/fastsortedcontainers
6
+ Project-URL: Changelog, https://github.com/bertpl/fastsortedcontainers/blob/main/CHANGELOG.md
7
+ Project-URL: Issues, https://github.com/bertpl/fastsortedcontainers/issues
8
+ Author-email: Bert Pluymers <bert.pluymers@gmail.com>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
17
+ Requires-Python: >=3.11
18
+ Description-Content-Type: text/markdown
19
+
20
+ # fastsortedcontainers
21
+
22
+ /
23
+
24
+ [![CI](https://img.shields.io/github/actions/workflow/status/bertpl/fastsortedcontainers/push_to_main.yml?branch=main&label=CI)](https://github.com/bertpl/fastsortedcontainers/actions/workflows/push_to_main.yml)
25
+ [![PyPI](https://img.shields.io/pypi/v/fastsortedcontainers.svg)](https://pypi.org/project/fastsortedcontainers/)
26
+ [![Python](https://img.shields.io/pypi/pyversions/fastsortedcontainers.svg)](https://pypi.org/project/fastsortedcontainers/)
27
+ [![License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/bertpl/fastsortedcontainers/blob/main/LICENSE)
28
+
29
+ ## Installation
30
+
31
+ ```bash
32
+ pip install fastsortedcontainers
33
+ ```
34
+
35
+ Or with [uv](https://docs.astral.sh/uv/):
36
+
37
+ ```bash
38
+ uv add fastsortedcontainers
39
+ ```
@@ -0,0 +1,20 @@
1
+ # fastsortedcontainers
2
+
3
+ /
4
+
5
+ [![CI](https://img.shields.io/github/actions/workflow/status/bertpl/fastsortedcontainers/push_to_main.yml?branch=main&label=CI)](https://github.com/bertpl/fastsortedcontainers/actions/workflows/push_to_main.yml)
6
+ [![PyPI](https://img.shields.io/pypi/v/fastsortedcontainers.svg)](https://pypi.org/project/fastsortedcontainers/)
7
+ [![Python](https://img.shields.io/pypi/pyversions/fastsortedcontainers.svg)](https://pypi.org/project/fastsortedcontainers/)
8
+ [![License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/bertpl/fastsortedcontainers/blob/main/LICENSE)
9
+
10
+ ## Installation
11
+
12
+ ```bash
13
+ pip install fastsortedcontainers
14
+ ```
15
+
16
+ Or with [uv](https://docs.astral.sh/uv/):
17
+
18
+ ```bash
19
+ uv add fastsortedcontainers
20
+ ```
@@ -0,0 +1,3 @@
1
+ from importlib.metadata import version
2
+
3
+ __version__ = version("fastsortedcontainers")
@@ -0,0 +1,62 @@
1
+ [project]
2
+ name = "fastsortedcontainers"
3
+ version = "0.0.0"
4
+ description = "/"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ authors = [
8
+ { name = "Bert Pluymers", email = "bert.pluymers@gmail.com" }
9
+ ]
10
+ requires-python = ">=3.11"
11
+ classifiers = [
12
+ "Development Status :: 1 - Planning",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Programming Language :: Python :: 3.11",
15
+ "Programming Language :: Python :: 3.12",
16
+ "Programming Language :: Python :: 3.13",
17
+ "Programming Language :: Python :: 3.14",
18
+ ]
19
+ dependencies = []
20
+
21
+ [dependency-groups]
22
+ dev = [
23
+ "pytest>=9.0",
24
+ "pytest-cov>=6.0",
25
+ "ruff>=0.14.0",
26
+ "pre-commit>=4.0",
27
+ ]
28
+
29
+ [project.urls]
30
+ Source = "https://github.com/bertpl/fastsortedcontainers"
31
+ Changelog = "https://github.com/bertpl/fastsortedcontainers/blob/main/CHANGELOG.md"
32
+ Issues = "https://github.com/bertpl/fastsortedcontainers/issues"
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"
37
+
38
+ [tool.hatch.build.targets.sdist]
39
+ packages = ["fastsortedcontainers"]
40
+
41
+ [tool.hatch.build.targets.wheel]
42
+ packages = ["fastsortedcontainers"]
43
+
44
+ [tool.ruff]
45
+ line-length = 120
46
+ target-version = "py311"
47
+
48
+ [tool.ruff.lint]
49
+ select = ["I"]
50
+
51
+ [tool.pytest.ini_options]
52
+ testpaths = ["tests"]
53
+
54
+ [tool.coverage.run]
55
+ source = ["fastsortedcontainers"]
56
+
57
+ [tool.coverage.report]
58
+ precision = 2
59
+ exclude_also = [
60
+ "@abstractmethod",
61
+ "@abc.abstractmethod",
62
+ ]