pycatalyst 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.
- pycatalyst-0.0.1/LICENSE +21 -0
- pycatalyst-0.0.1/PKG-INFO +74 -0
- pycatalyst-0.0.1/README.md +42 -0
- pycatalyst-0.0.1/pyproject.toml +104 -0
- pycatalyst-0.0.1/setup.cfg +4 -0
- pycatalyst-0.0.1/src/pycatalyst/__init__.py +12 -0
- pycatalyst-0.0.1/src/pycatalyst/py.typed +1 -0
- pycatalyst-0.0.1/src/pycatalyst.egg-info/PKG-INFO +74 -0
- pycatalyst-0.0.1/src/pycatalyst.egg-info/SOURCES.txt +11 -0
- pycatalyst-0.0.1/src/pycatalyst.egg-info/dependency_links.txt +1 -0
- pycatalyst-0.0.1/src/pycatalyst.egg-info/requires.txt +8 -0
- pycatalyst-0.0.1/src/pycatalyst.egg-info/top_level.txt +1 -0
- pycatalyst-0.0.1/tests/test_version.py +10 -0
pycatalyst-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025
|
|
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,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pycatalyst
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A modern Python package template — customize this description.
|
|
5
|
+
Author-email: Your Name <you@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/your-org/pycatalyst
|
|
8
|
+
Project-URL: Documentation, https://github.com/your-org/pycatalyst#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/your-org/pycatalyst
|
|
10
|
+
Project-URL: Issues, https://github.com/your-org/pycatalyst/issues
|
|
11
|
+
Keywords: python,template,catalyst
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
27
|
+
Requires-Dist: ruff>=0.4.0; extra == "dev"
|
|
28
|
+
Requires-Dist: mypy>=1.8.0; extra == "dev"
|
|
29
|
+
Requires-Dist: build>=1.0.0; extra == "dev"
|
|
30
|
+
Requires-Dist: twine>=5.0.0; extra == "dev"
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# pycatalyst
|
|
34
|
+
|
|
35
|
+
A modern Python package template. Replace this with your package description.
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install pycatalyst
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
From source (editable):
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
git clone https://github.com/your-org/pycatalyst
|
|
47
|
+
cd pycatalyst
|
|
48
|
+
pip install -e ".[dev]"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Quick Start
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
import pycatalyst
|
|
55
|
+
|
|
56
|
+
print(pycatalyst.__version__)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Development
|
|
60
|
+
|
|
61
|
+
- **Lint & format:** `ruff check . && ruff format .`
|
|
62
|
+
- **Type check:** `mypy src/`
|
|
63
|
+
- **Tests:** `pytest`
|
|
64
|
+
- **Coverage:** `pytest --cov=pycatalyst --cov-report=term-missing`
|
|
65
|
+
|
|
66
|
+
## Publishing
|
|
67
|
+
|
|
68
|
+
1. Bump version in `pyproject.toml` and `CHANGELOG.md`.
|
|
69
|
+
2. Create a release tag: `git tag v0.1.0 && git push origin v0.1.0`.
|
|
70
|
+
3. The GitHub Action uses [PyPI Trusted Publishing](https://docs.pypi.org/trusted-publishers/); configure the publisher on PyPI for this repo, then the workflow will publish on tag push.
|
|
71
|
+
|
|
72
|
+
## License
|
|
73
|
+
|
|
74
|
+
MIT
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# pycatalyst
|
|
2
|
+
|
|
3
|
+
A modern Python package template. Replace this with your package description.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install pycatalyst
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
From source (editable):
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
git clone https://github.com/your-org/pycatalyst
|
|
15
|
+
cd pycatalyst
|
|
16
|
+
pip install -e ".[dev]"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
import pycatalyst
|
|
23
|
+
|
|
24
|
+
print(pycatalyst.__version__)
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
- **Lint & format:** `ruff check . && ruff format .`
|
|
30
|
+
- **Type check:** `mypy src/`
|
|
31
|
+
- **Tests:** `pytest`
|
|
32
|
+
- **Coverage:** `pytest --cov=pycatalyst --cov-report=term-missing`
|
|
33
|
+
|
|
34
|
+
## Publishing
|
|
35
|
+
|
|
36
|
+
1. Bump version in `pyproject.toml` and `CHANGELOG.md`.
|
|
37
|
+
2. Create a release tag: `git tag v0.1.0 && git push origin v0.1.0`.
|
|
38
|
+
3. The GitHub Action uses [PyPI Trusted Publishing](https://docs.pypi.org/trusted-publishers/); configure the publisher on PyPI for this repo, then the workflow will publish on tag push.
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pycatalyst"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A modern Python package template — customize this description."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Your Name", email = "you@example.com"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["python", "template", "catalyst"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: 3.13",
|
|
25
|
+
"Typing :: Typed",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
dependencies = []
|
|
29
|
+
|
|
30
|
+
[project.optional-dependencies]
|
|
31
|
+
dev = [
|
|
32
|
+
"pytest>=7.4.0",
|
|
33
|
+
"pytest-cov>=4.1.0",
|
|
34
|
+
"ruff>=0.4.0",
|
|
35
|
+
"mypy>=1.8.0",
|
|
36
|
+
"build>=1.0.0",
|
|
37
|
+
"twine>=5.0.0",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
Homepage = "https://github.com/your-org/pycatalyst"
|
|
42
|
+
Documentation = "https://github.com/your-org/pycatalyst#readme"
|
|
43
|
+
Repository = "https://github.com/your-org/pycatalyst"
|
|
44
|
+
Issues = "https://github.com/your-org/pycatalyst/issues"
|
|
45
|
+
|
|
46
|
+
[tool.setuptools.packages.find]
|
|
47
|
+
where = ["src"]
|
|
48
|
+
|
|
49
|
+
[tool.setuptools.package-dir]
|
|
50
|
+
"" = "src"
|
|
51
|
+
|
|
52
|
+
[tool.setuptools.package-data]
|
|
53
|
+
pycatalyst = ["py.typed"]
|
|
54
|
+
|
|
55
|
+
[tool.ruff]
|
|
56
|
+
target-version = "py310"
|
|
57
|
+
line-length = 100
|
|
58
|
+
src = ["src", "tests"]
|
|
59
|
+
|
|
60
|
+
[tool.ruff.lint]
|
|
61
|
+
select = [
|
|
62
|
+
"E", # pycodestyle errors
|
|
63
|
+
"W", # pycodestyle warnings
|
|
64
|
+
"F", # pyflakes
|
|
65
|
+
"I", # isort
|
|
66
|
+
"B", # flake8-bugbear
|
|
67
|
+
"C4", # flake8-comprehensions
|
|
68
|
+
"UP", # pyupgrade
|
|
69
|
+
]
|
|
70
|
+
ignore = ["E501"]
|
|
71
|
+
|
|
72
|
+
[tool.ruff.lint.per-file-ignores]
|
|
73
|
+
"__init__.py" = ["F401"]
|
|
74
|
+
|
|
75
|
+
[tool.ruff.format]
|
|
76
|
+
quote-style = "double"
|
|
77
|
+
|
|
78
|
+
[tool.mypy]
|
|
79
|
+
python_version = "3.10"
|
|
80
|
+
warn_return_any = true
|
|
81
|
+
warn_unused_configs = true
|
|
82
|
+
disallow_untyped_defs = true
|
|
83
|
+
strict = true
|
|
84
|
+
|
|
85
|
+
[tool.pytest.ini_options]
|
|
86
|
+
testpaths = ["tests"]
|
|
87
|
+
python_files = ["test_*.py"]
|
|
88
|
+
addopts = ["-v", "--strict-markers", "--tb=short"]
|
|
89
|
+
markers = [
|
|
90
|
+
"slow: marks tests as slow",
|
|
91
|
+
"integration: marks tests as integration tests",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[tool.coverage.run]
|
|
95
|
+
source = ["src/pycatalyst"]
|
|
96
|
+
omit = ["*/tests/*", "*/__pycache__/*"]
|
|
97
|
+
|
|
98
|
+
[tool.coverage.report]
|
|
99
|
+
exclude_lines = [
|
|
100
|
+
"pragma: no cover",
|
|
101
|
+
"def __repr__",
|
|
102
|
+
"raise NotImplementedError",
|
|
103
|
+
"if TYPE_CHECKING:",
|
|
104
|
+
]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""pycatalyst — a modern Python package template."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
try:
|
|
6
|
+
from importlib.metadata import version
|
|
7
|
+
|
|
8
|
+
__version__ = version("pycatalyst")
|
|
9
|
+
except Exception:
|
|
10
|
+
__version__ = "0.1.0"
|
|
11
|
+
|
|
12
|
+
__all__ = ["__version__"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pycatalyst
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A modern Python package template — customize this description.
|
|
5
|
+
Author-email: Your Name <you@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/your-org/pycatalyst
|
|
8
|
+
Project-URL: Documentation, https://github.com/your-org/pycatalyst#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/your-org/pycatalyst
|
|
10
|
+
Project-URL: Issues, https://github.com/your-org/pycatalyst/issues
|
|
11
|
+
Keywords: python,template,catalyst
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
27
|
+
Requires-Dist: ruff>=0.4.0; extra == "dev"
|
|
28
|
+
Requires-Dist: mypy>=1.8.0; extra == "dev"
|
|
29
|
+
Requires-Dist: build>=1.0.0; extra == "dev"
|
|
30
|
+
Requires-Dist: twine>=5.0.0; extra == "dev"
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# pycatalyst
|
|
34
|
+
|
|
35
|
+
A modern Python package template. Replace this with your package description.
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install pycatalyst
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
From source (editable):
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
git clone https://github.com/your-org/pycatalyst
|
|
47
|
+
cd pycatalyst
|
|
48
|
+
pip install -e ".[dev]"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Quick Start
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
import pycatalyst
|
|
55
|
+
|
|
56
|
+
print(pycatalyst.__version__)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Development
|
|
60
|
+
|
|
61
|
+
- **Lint & format:** `ruff check . && ruff format .`
|
|
62
|
+
- **Type check:** `mypy src/`
|
|
63
|
+
- **Tests:** `pytest`
|
|
64
|
+
- **Coverage:** `pytest --cov=pycatalyst --cov-report=term-missing`
|
|
65
|
+
|
|
66
|
+
## Publishing
|
|
67
|
+
|
|
68
|
+
1. Bump version in `pyproject.toml` and `CHANGELOG.md`.
|
|
69
|
+
2. Create a release tag: `git tag v0.1.0 && git push origin v0.1.0`.
|
|
70
|
+
3. The GitHub Action uses [PyPI Trusted Publishing](https://docs.pypi.org/trusted-publishers/); configure the publisher on PyPI for this repo, then the workflow will publish on tag push.
|
|
71
|
+
|
|
72
|
+
## License
|
|
73
|
+
|
|
74
|
+
MIT
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/pycatalyst/__init__.py
|
|
5
|
+
src/pycatalyst/py.typed
|
|
6
|
+
src/pycatalyst.egg-info/PKG-INFO
|
|
7
|
+
src/pycatalyst.egg-info/SOURCES.txt
|
|
8
|
+
src/pycatalyst.egg-info/dependency_links.txt
|
|
9
|
+
src/pycatalyst.egg-info/requires.txt
|
|
10
|
+
src/pycatalyst.egg-info/top_level.txt
|
|
11
|
+
tests/test_version.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pycatalyst
|