syrtis-python-client 0.0.6__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,109 @@
1
+ Metadata-Version: 2.1
2
+ Name: syrtis-python-client
3
+ Version: 0.0.6
4
+ Author-Email: weeger <contact@syrtis.ai>
5
+ License: MIT
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.10
10
+ Requires-Dist: pydantic<3,>=2
11
+ Provides-Extra: dev
12
+ Requires-Dist: pytest; extra == "dev"
13
+ Requires-Dist: pytest-cov; extra == "dev"
14
+ Description-Content-Type: text/markdown
15
+
16
+ # syrtis-python-client
17
+
18
+ Version: 0.0.6
19
+
20
+ ## Table of Contents
21
+
22
+ - [Status Compatibility](#status-compatibility)
23
+ - [Tests](#tests)
24
+ - [Roadmap](#roadmap)
25
+ - [Useful Links](#useful-links)
26
+ - [Suite Signature](#suite-signature)
27
+
28
+
29
+ ## Status & Compatibility
30
+
31
+ **Maturity**: Production-ready
32
+
33
+ **Python Support**: >=3.10
34
+
35
+ **OS Support**: Linux, macOS, Windows
36
+
37
+ **Status**: Actively maintained
38
+
39
+ ## Tests
40
+
41
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
42
+
43
+ ### Installation
44
+
45
+ First, install the required testing dependencies:
46
+ ```bash
47
+ .venv/bin/python -m pip install pytest pytest-cov
48
+ ```
49
+
50
+ ### Basic Usage
51
+
52
+ Run all tests with coverage:
53
+ ```bash
54
+ .venv/bin/python -m pytest --cov --cov-report=html
55
+ ```
56
+
57
+ ### Common Commands
58
+ ```bash
59
+ # Run tests with coverage for a specific module
60
+ .venv/bin/python -m pytest --cov=your_module
61
+
62
+ # Show which lines are not covered
63
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
64
+
65
+ # Generate an HTML coverage report
66
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
67
+
68
+ # Combine terminal and HTML reports
69
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
70
+
71
+ # Run specific test file with coverage
72
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
73
+ ```
74
+
75
+ ### Viewing HTML Reports
76
+
77
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
78
+
79
+ ### Coverage Threshold
80
+
81
+ To enforce a minimum coverage percentage:
82
+ ```bash
83
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
84
+ ```
85
+
86
+ This will cause the test suite to fail if coverage drops below 80%.
87
+
88
+ ## Known Limitations & Roadmap
89
+
90
+ Current limitations and planned features are tracked in the GitHub issues.
91
+
92
+ See the [project roadmap](https://github.com/wexample/python-python_client/issues) for upcoming features and improvements.
93
+
94
+ ## Useful Links
95
+
96
+ - **Homepage**: https://github.com/wexample/python-python-client
97
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
98
+ - **Issue Tracker**: https://github.com/wexample/python-python-client/issues
99
+ - **Discussions**: https://github.com/wexample/python-python-client/discussions
100
+ - **PyPI**: [pypi.org/project/syrtis-python-client](https://pypi.org/project/syrtis-python-client/)
101
+
102
+ # About us
103
+
104
+ [Syrtis AI](https://syrtis.ai) helps organizations turn artificial intelligence from an idea into reliable, measurable systems. We are a team of engineers and practitioners focused on implementing AI services inside real businesses — from strategy and architecture to deployment, integration, and long-term operations. Our goal is simple: deliver AI that works in production, fits your constraints, and earns its keep.
105
+
106
+ We build practical solutions that connect to existing tools, data, and processes, with an emphasis on security, performance, and governance. Whether it’s automating workflows, enhancing decision-making, or creating new product capabilities, Syrtis AI designs implementations that are maintainable, scalable, and aligned with business outcomes — not demos.
107
+
108
+ Syrtis AI promotes a culture of rigor and responsibility. Every delivery reflects a commitment to clear engineering, transparent communication, and trustworthy AI practices, so teams can adopt, operate, and evolve their AI services with confidence.
109
+
@@ -0,0 +1,94 @@
1
+ # syrtis-python-client
2
+
3
+ Version: 0.0.6
4
+
5
+ ## Table of Contents
6
+
7
+ - [Status Compatibility](#status-compatibility)
8
+ - [Tests](#tests)
9
+ - [Roadmap](#roadmap)
10
+ - [Useful Links](#useful-links)
11
+ - [Suite Signature](#suite-signature)
12
+
13
+
14
+ ## Status & Compatibility
15
+
16
+ **Maturity**: Production-ready
17
+
18
+ **Python Support**: >=3.10
19
+
20
+ **OS Support**: Linux, macOS, Windows
21
+
22
+ **Status**: Actively maintained
23
+
24
+ ## Tests
25
+
26
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
27
+
28
+ ### Installation
29
+
30
+ First, install the required testing dependencies:
31
+ ```bash
32
+ .venv/bin/python -m pip install pytest pytest-cov
33
+ ```
34
+
35
+ ### Basic Usage
36
+
37
+ Run all tests with coverage:
38
+ ```bash
39
+ .venv/bin/python -m pytest --cov --cov-report=html
40
+ ```
41
+
42
+ ### Common Commands
43
+ ```bash
44
+ # Run tests with coverage for a specific module
45
+ .venv/bin/python -m pytest --cov=your_module
46
+
47
+ # Show which lines are not covered
48
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
49
+
50
+ # Generate an HTML coverage report
51
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
52
+
53
+ # Combine terminal and HTML reports
54
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
55
+
56
+ # Run specific test file with coverage
57
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
58
+ ```
59
+
60
+ ### Viewing HTML Reports
61
+
62
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
63
+
64
+ ### Coverage Threshold
65
+
66
+ To enforce a minimum coverage percentage:
67
+ ```bash
68
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
69
+ ```
70
+
71
+ This will cause the test suite to fail if coverage drops below 80%.
72
+
73
+ ## Known Limitations & Roadmap
74
+
75
+ Current limitations and planned features are tracked in the GitHub issues.
76
+
77
+ See the [project roadmap](https://github.com/wexample/python-python_client/issues) for upcoming features and improvements.
78
+
79
+ ## Useful Links
80
+
81
+ - **Homepage**: https://github.com/wexample/python-python-client
82
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
83
+ - **Issue Tracker**: https://github.com/wexample/python-python-client/issues
84
+ - **Discussions**: https://github.com/wexample/python-python-client/discussions
85
+ - **PyPI**: [pypi.org/project/syrtis-python-client](https://pypi.org/project/syrtis-python-client/)
86
+
87
+ # About us
88
+
89
+ [Syrtis AI](https://syrtis.ai) helps organizations turn artificial intelligence from an idea into reliable, measurable systems. We are a team of engineers and practitioners focused on implementing AI services inside real businesses — from strategy and architecture to deployment, integration, and long-term operations. Our goal is simple: deliver AI that works in production, fits your constraints, and earns its keep.
90
+
91
+ We build practical solutions that connect to existing tools, data, and processes, with an emphasis on security, performance, and governance. Whether it’s automating workflows, enhancing decision-making, or creating new product capabilities, Syrtis AI designs implementations that are maintainable, scalable, and aligned with business outcomes — not demos.
92
+
93
+ Syrtis AI promotes a culture of rigor and responsibility. Every delivery reflects a commitment to clear engineering, transparent communication, and trustworthy AI practices, so teams can adopt, operate, and evolve their AI services with confidence.
94
+
@@ -0,0 +1,80 @@
1
+ [build-system]
2
+ requires = [
3
+ "pdm-backend",
4
+ ]
5
+ build-backend = "pdm.backend"
6
+
7
+ [project]
8
+ name = "syrtis-python-client"
9
+ version = "0.0.6"
10
+ authors = [
11
+ { name = "weeger", email = "contact@syrtis.ai" },
12
+ ]
13
+ requires-python = ">=3.10"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+ dependencies = [
20
+ "pydantic>=2,<3",
21
+ ]
22
+
23
+ [project.readme]
24
+ file = "README.md"
25
+ content-type = "text/markdown"
26
+
27
+ [project.license]
28
+ text = "MIT"
29
+
30
+ [project.optional-dependencies]
31
+ dev = [
32
+ "pytest",
33
+ "pytest-cov",
34
+ ]
35
+
36
+ [tool.setuptools.packages.find]
37
+ include = [
38
+ "*",
39
+ ]
40
+ exclude = [
41
+ "syrtis_python_client.testing*",
42
+ ]
43
+
44
+ [tool.pdm]
45
+ distribution = true
46
+
47
+ [tool.pdm.build]
48
+ package-dir = "src"
49
+ packages = [
50
+ { include = "syrtis_python_client", from = "src" },
51
+ ]
52
+
53
+ [tool.pytest.ini_options]
54
+ testpaths = [
55
+ "tests",
56
+ ]
57
+ pythonpath = [
58
+ "src",
59
+ ]
60
+
61
+ [tool.coverage.run]
62
+ source = [
63
+ "syrtis_python_client",
64
+ ]
65
+ omit = [
66
+ "*/tests/*",
67
+ "*/.venv/*",
68
+ "*/venv/*",
69
+ ]
70
+
71
+ [tool.coverage.report]
72
+ exclude_lines = [
73
+ "pragma: no cover",
74
+ "def __repr__",
75
+ "raise AssertionError",
76
+ "raise NotImplementedError",
77
+ "if __name__ == .__main__.:",
78
+ "if TYPE_CHECKING:",
79
+ "@abstractmethod",
80
+ ]