evercatch 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Evercatch
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,101 @@
1
+ Metadata-Version: 2.1
2
+ Name: evercatch
3
+ Version: 0.0.1
4
+ Summary: Official Python SDK for Evercatch webhook infrastructure platform.
5
+ Home-page: https://git.psmattas.com/evercatch/evercatch-python
6
+ License: MIT
7
+ Keywords: evercatch,sdk,api,webhooks
8
+ Author: Evercatch
9
+ Author-email: support@evercatch.dev
10
+ Requires-Python: >=3.12,<4.0
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Project-URL: Repository, https://git.psmattas.com/evercatch/evercatch-python
17
+ Description-Content-Type: text/markdown
18
+
19
+ # 📦 Evercatch Python
20
+
21
+ > Official Python SDK for Evercatch webhook infrastructure platform.
22
+
23
+ ---
24
+
25
+ ## 🧭 Overview
26
+
27
+ This repository contains the official Python SDK for the Evercatch platform. Its purpose is to provide a simple and convenient interface for developers to interact with the Evercatch API, manage webhooks, and handle events within their Python applications.
28
+
29
+ **⚠️ This SDK is currently under active development and is not yet ready for production use. The package published on PyPI is a placeholder to reserve the name.**
30
+
31
+ ---
32
+
33
+ ## 🛠️ Tech Stack
34
+
35
+ The final technology stack is being determined. The planned stack is as follows:
36
+
37
+ | Layer | Technology |
38
+ | :--- | :--- |
39
+ | Language | Python |
40
+ | Framework | None (Standard Library + Minimal Dependencies) |
41
+ | Key Dependencies | `httpx` or `requests` (for HTTP), `Pydantic` (for data models) |
42
+
43
+ ---
44
+
45
+ ## 🚀 Getting Started
46
+
47
+ ### Prerequisites
48
+
49
+ - Python 3.12+
50
+
51
+ ### Installation (Future)
52
+
53
+ Once released, the package will be available on PyPI:
54
+ ```bash
55
+ # This will not work until the first official release
56
+ pip install evercatch
57
+ ```
58
+
59
+ ### Local Development
60
+
61
+ The repository can be cloned for contribution or testing once development is further along.
62
+
63
+ ```bash
64
+ # Clone the repo
65
+ git clone https://git.psmattas.com/Evercatch/evercatch-python.git
66
+
67
+ cd evercatch-python
68
+
69
+ # Note: The project is not yet functional.
70
+ ```
71
+
72
+ ---
73
+
74
+ ## 🌿 Branching & Commits
75
+
76
+ All work follows the Evercatch contribution guide defined in the org README.
77
+
78
+ **Branch format:** `EC-ID-short-description`
79
+ **Commit format:** `EC-00: type(scope): message`
80
+
81
+ See [Evercatch Org README](https://git.psmattas.com/Evercatch) for full conventions.
82
+
83
+ ---
84
+
85
+ ## ⚙️ CI/CD
86
+
87
+ Automated via Jenkins. Merges to `main` trigger staging deployments.
88
+
89
+ | Pipeline | Status |
90
+ | :--- | :---: |
91
+ | Build | ![Build Status](https://img.shields.io/badge/build-pending-lightgrey) |
92
+ | Lint | ![Lint Status](https://img.shields.io/badge/lint-pending-lightgrey) |
93
+ | Test | ![Test Status](https://img.shields.io/badge/tests-pending-lightgrey) |
94
+
95
+ ---
96
+
97
+ ## 📄 License
98
+
99
+ **Copyright © 2026 Evercatch.**
100
+ Proprietary and confidential. Unauthorised distribution is strictly prohibited.
101
+
@@ -0,0 +1,82 @@
1
+ # 📦 Evercatch Python
2
+
3
+ > Official Python SDK for Evercatch webhook infrastructure platform.
4
+
5
+ ---
6
+
7
+ ## 🧭 Overview
8
+
9
+ This repository contains the official Python SDK for the Evercatch platform. Its purpose is to provide a simple and convenient interface for developers to interact with the Evercatch API, manage webhooks, and handle events within their Python applications.
10
+
11
+ **⚠️ This SDK is currently under active development and is not yet ready for production use. The package published on PyPI is a placeholder to reserve the name.**
12
+
13
+ ---
14
+
15
+ ## 🛠️ Tech Stack
16
+
17
+ The final technology stack is being determined. The planned stack is as follows:
18
+
19
+ | Layer | Technology |
20
+ | :--- | :--- |
21
+ | Language | Python |
22
+ | Framework | None (Standard Library + Minimal Dependencies) |
23
+ | Key Dependencies | `httpx` or `requests` (for HTTP), `Pydantic` (for data models) |
24
+
25
+ ---
26
+
27
+ ## 🚀 Getting Started
28
+
29
+ ### Prerequisites
30
+
31
+ - Python 3.12+
32
+
33
+ ### Installation (Future)
34
+
35
+ Once released, the package will be available on PyPI:
36
+ ```bash
37
+ # This will not work until the first official release
38
+ pip install evercatch
39
+ ```
40
+
41
+ ### Local Development
42
+
43
+ The repository can be cloned for contribution or testing once development is further along.
44
+
45
+ ```bash
46
+ # Clone the repo
47
+ git clone https://git.psmattas.com/Evercatch/evercatch-python.git
48
+
49
+ cd evercatch-python
50
+
51
+ # Note: The project is not yet functional.
52
+ ```
53
+
54
+ ---
55
+
56
+ ## 🌿 Branching & Commits
57
+
58
+ All work follows the Evercatch contribution guide defined in the org README.
59
+
60
+ **Branch format:** `EC-ID-short-description`
61
+ **Commit format:** `EC-00: type(scope): message`
62
+
63
+ See [Evercatch Org README](https://git.psmattas.com/Evercatch) for full conventions.
64
+
65
+ ---
66
+
67
+ ## ⚙️ CI/CD
68
+
69
+ Automated via Jenkins. Merges to `main` trigger staging deployments.
70
+
71
+ | Pipeline | Status |
72
+ | :--- | :---: |
73
+ | Build | ![Build Status](https://img.shields.io/badge/build-pending-lightgrey) |
74
+ | Lint | ![Lint Status](https://img.shields.io/badge/lint-pending-lightgrey) |
75
+ | Test | ![Test Status](https://img.shields.io/badge/tests-pending-lightgrey) |
76
+
77
+ ---
78
+
79
+ ## 📄 License
80
+
81
+ **Copyright © 2026 Evercatch.**
82
+ Proprietary and confidential. Unauthorised distribution is strictly prohibited.
File without changes
@@ -0,0 +1,62 @@
1
+ [build-system]
2
+ requires = ["poetry-core"]
3
+ build-backend = "poetry.core.masonry.api"
4
+
5
+ [tool.poetry]
6
+ name = "evercatch"
7
+ version = "0.0.1"
8
+ description = "Official Python SDK for Evercatch webhook infrastructure platform."
9
+ authors = ["Evercatch <support@evercatch.dev>"]
10
+ license = "MIT"
11
+ readme = "README.md"
12
+ repository = "https://git.psmattas.com/evercatch/evercatch-python"
13
+ keywords = ["evercatch", "sdk", "api", "webhooks"]
14
+
15
+ # These classifiers are important for PyPI to categorize your package correctly
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.12",
22
+ ]
23
+
24
+ # This tells Poetry that your package code is in the 'evercatch' folder
25
+ packages = [{ include = "evercatch" }]
26
+
27
+ [tool.poetry.dependencies]
28
+ python = "^3.12"
29
+
30
+ [tool.poetry.group.dev.dependencies]
31
+ twine = ">=4.0"
32
+ poethepoet = ">=0.24"
33
+
34
+ # ---------------------------------------------------------------------------
35
+ # Task runner (poethepoet)
36
+ # Usage:
37
+ # poetry run poe build – build sdist + wheel into dist/
38
+ # poetry run poe publish-gitea – upload dist/* to the Gitea registry
39
+ # poetry run poe release – build then publish (one shot)
40
+ #
41
+ # Before running publish-gitea, make sure ~/.pypirc contains:
42
+ #
43
+ # [distutils]
44
+ # index-servers = gitea
45
+ #
46
+ # [gitea]
47
+ # repository = https://git.psmattas.com/api/packages/Evercatch/pypi
48
+ # username = <your-gitea-username>
49
+ # password = <your-gitea-password-or-token>
50
+ # ---------------------------------------------------------------------------
51
+
52
+ [tool.poe.tasks.build]
53
+ cmd = "poetry build"
54
+ help = "Build sdist and wheel into dist/"
55
+
56
+ [tool.poe.tasks.publish-gitea]
57
+ cmd = "python -m twine upload --repository gitea dist/*"
58
+ help = "Upload dist/* to the Gitea package registry"
59
+
60
+ [tool.poe.tasks.release]
61
+ sequence = [{ref = "build"}, {ref = "publish-gitea"}]
62
+ help = "Build and publish to Gitea in one step"