core-genai 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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Alejandro Cora González.
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,127 @@
1
+ Metadata-Version: 2.4
2
+ Name: core-genai
3
+ Version: 0.0.0
4
+ Summary: A library that provides common utilities AI-related.
5
+ Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
6
+ Maintainer: Alejandro Cora González
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, https://gitlab.com/bytecode-solutions/core/core-genai
9
+ Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-genai
10
+ Project-URL: Documentation, https://core-genai.readthedocs.io/en/latest/
11
+ Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-genai/-/issues
12
+ Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/master/CHANGELOG.md
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Topic :: Utilities
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
26
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
27
+ Requires-Python: >=3.9
28
+ Description-Content-Type: text/x-rst
29
+ License-File: LICENSE
30
+ Provides-Extra: dev
31
+ Requires-Dist: core-dev-tools>=2.0.0; extra == "dev"
32
+ Requires-Dist: core-tests>=2.1.0; extra == "dev"
33
+ Dynamic: license-file
34
+
35
+ core-genai
36
+ ===============================================================================
37
+
38
+ A library that provides common utilities AI-related.
39
+
40
+ ===============================================================================
41
+
42
+ .. image:: https://img.shields.io/pypi/pyversions/core-genai.svg
43
+ :target: https://pypi.org/project/core-genai/
44
+ :alt: Python Versions
45
+
46
+ .. image:: https://img.shields.io/badge/license-MIT-blue.svg
47
+ :target: https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/main/LICENSE
48
+ :alt: License
49
+
50
+ .. image:: https://gitlab.com/bytecode-solutions/core/core-genai/badges/release/pipeline.svg
51
+ :target: https://gitlab.com/bytecode-solutions/core/core-genai/-/pipelines
52
+ :alt: Pipeline Status
53
+
54
+ .. image:: https://readthedocs.org/projects/core-genai/badge/?version=latest
55
+ :target: https://readthedocs.org/projects/core-genai/
56
+ :alt: Docs Status
57
+
58
+ .. image:: https://img.shields.io/badge/security-bandit-yellow.svg
59
+ :target: https://github.com/PyCQA/bandit
60
+ :alt: Security
61
+
62
+ |
63
+
64
+
65
+ Installation
66
+ ===============================================================================
67
+
68
+ .. code-block:: bash
69
+
70
+ pip install core-genai
71
+ uv pip install core-genai
72
+
73
+
74
+ Features
75
+ ===============================================================================
76
+
77
+
78
+
79
+ Quick Start
80
+ ===============================================================================
81
+
82
+ .. code-block:: bash
83
+
84
+ pip install core-genai
85
+ pip install -e ".[dev]" # For development
86
+
87
+
88
+ Contributing
89
+ ===============================================================================
90
+
91
+ Contributions are welcome! Please:
92
+
93
+ 1. Fork the repository
94
+ 2. Create a feature branch
95
+ 3. Write tests for new functionality
96
+ 4. Ensure all tests pass: ``python manager.py run-tests``
97
+ 5. Run linting: ``pylint core_genai``
98
+ 6. Run security checks: ``bandit -r core_genai``
99
+ 7. Submit a pull request
100
+
101
+
102
+ License
103
+ ===============================================================================
104
+
105
+ This project is licensed under the MIT License. See the LICENSE file for details.
106
+
107
+
108
+ Links
109
+ ===============================================================================
110
+
111
+ * **Documentation:** https://core-genai.readthedocs.io/en/latest/
112
+ * **Repository:** https://gitlab.com/bytecode-solutions/core/core-genai
113
+ * **Issues:** https://gitlab.com/bytecode-solutions/core/core-genai/-/issues
114
+ * **Changelog:** https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/master/CHANGELOG.md
115
+ * **PyPI:** https://pypi.org/project/core-genai/
116
+
117
+
118
+ Support
119
+ ===============================================================================
120
+
121
+ For questions or support, please open an issue on GitLab or contact the maintainers.
122
+
123
+
124
+ Authors
125
+ ===============================================================================
126
+
127
+ * **Alejandro Cora González** - *Initial work* - alek.cora.glez@gmail.com
@@ -0,0 +1,93 @@
1
+ core-genai
2
+ ===============================================================================
3
+
4
+ A library that provides common utilities AI-related.
5
+
6
+ ===============================================================================
7
+
8
+ .. image:: https://img.shields.io/pypi/pyversions/core-genai.svg
9
+ :target: https://pypi.org/project/core-genai/
10
+ :alt: Python Versions
11
+
12
+ .. image:: https://img.shields.io/badge/license-MIT-blue.svg
13
+ :target: https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/main/LICENSE
14
+ :alt: License
15
+
16
+ .. image:: https://gitlab.com/bytecode-solutions/core/core-genai/badges/release/pipeline.svg
17
+ :target: https://gitlab.com/bytecode-solutions/core/core-genai/-/pipelines
18
+ :alt: Pipeline Status
19
+
20
+ .. image:: https://readthedocs.org/projects/core-genai/badge/?version=latest
21
+ :target: https://readthedocs.org/projects/core-genai/
22
+ :alt: Docs Status
23
+
24
+ .. image:: https://img.shields.io/badge/security-bandit-yellow.svg
25
+ :target: https://github.com/PyCQA/bandit
26
+ :alt: Security
27
+
28
+ |
29
+
30
+
31
+ Installation
32
+ ===============================================================================
33
+
34
+ .. code-block:: bash
35
+
36
+ pip install core-genai
37
+ uv pip install core-genai
38
+
39
+
40
+ Features
41
+ ===============================================================================
42
+
43
+
44
+
45
+ Quick Start
46
+ ===============================================================================
47
+
48
+ .. code-block:: bash
49
+
50
+ pip install core-genai
51
+ pip install -e ".[dev]" # For development
52
+
53
+
54
+ Contributing
55
+ ===============================================================================
56
+
57
+ Contributions are welcome! Please:
58
+
59
+ 1. Fork the repository
60
+ 2. Create a feature branch
61
+ 3. Write tests for new functionality
62
+ 4. Ensure all tests pass: ``python manager.py run-tests``
63
+ 5. Run linting: ``pylint core_genai``
64
+ 6. Run security checks: ``bandit -r core_genai``
65
+ 7. Submit a pull request
66
+
67
+
68
+ License
69
+ ===============================================================================
70
+
71
+ This project is licensed under the MIT License. See the LICENSE file for details.
72
+
73
+
74
+ Links
75
+ ===============================================================================
76
+
77
+ * **Documentation:** https://core-genai.readthedocs.io/en/latest/
78
+ * **Repository:** https://gitlab.com/bytecode-solutions/core/core-genai
79
+ * **Issues:** https://gitlab.com/bytecode-solutions/core/core-genai/-/issues
80
+ * **Changelog:** https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/master/CHANGELOG.md
81
+ * **PyPI:** https://pypi.org/project/core-genai/
82
+
83
+
84
+ Support
85
+ ===============================================================================
86
+
87
+ For questions or support, please open an issue on GitLab or contact the maintainers.
88
+
89
+
90
+ Authors
91
+ ===============================================================================
92
+
93
+ * **Alejandro Cora González** - *Initial work* - alek.cora.glez@gmail.com
@@ -0,0 +1,22 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ A thin Python wrapper around the Sentry SDK providing a decorator
5
+ for automatic initialization and standalone functions for
6
+ the full event lifecycle.
7
+ """
8
+
9
+ from importlib.metadata import PackageNotFoundError
10
+ from importlib.metadata import version
11
+
12
+
13
+ try:
14
+ __version__ = version("core-genai")
15
+
16
+ except PackageNotFoundError:
17
+ __version__ = "unknown"
18
+
19
+
20
+ __all__ = [
21
+ "__version__",
22
+ ]
File without changes
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.4
2
+ Name: core-genai
3
+ Version: 0.0.0
4
+ Summary: A library that provides common utilities AI-related.
5
+ Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
6
+ Maintainer: Alejandro Cora González
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, https://gitlab.com/bytecode-solutions/core/core-genai
9
+ Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-genai
10
+ Project-URL: Documentation, https://core-genai.readthedocs.io/en/latest/
11
+ Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-genai/-/issues
12
+ Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/master/CHANGELOG.md
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Topic :: Utilities
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
26
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
27
+ Requires-Python: >=3.9
28
+ Description-Content-Type: text/x-rst
29
+ License-File: LICENSE
30
+ Provides-Extra: dev
31
+ Requires-Dist: core-dev-tools>=2.0.0; extra == "dev"
32
+ Requires-Dist: core-tests>=2.1.0; extra == "dev"
33
+ Dynamic: license-file
34
+
35
+ core-genai
36
+ ===============================================================================
37
+
38
+ A library that provides common utilities AI-related.
39
+
40
+ ===============================================================================
41
+
42
+ .. image:: https://img.shields.io/pypi/pyversions/core-genai.svg
43
+ :target: https://pypi.org/project/core-genai/
44
+ :alt: Python Versions
45
+
46
+ .. image:: https://img.shields.io/badge/license-MIT-blue.svg
47
+ :target: https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/main/LICENSE
48
+ :alt: License
49
+
50
+ .. image:: https://gitlab.com/bytecode-solutions/core/core-genai/badges/release/pipeline.svg
51
+ :target: https://gitlab.com/bytecode-solutions/core/core-genai/-/pipelines
52
+ :alt: Pipeline Status
53
+
54
+ .. image:: https://readthedocs.org/projects/core-genai/badge/?version=latest
55
+ :target: https://readthedocs.org/projects/core-genai/
56
+ :alt: Docs Status
57
+
58
+ .. image:: https://img.shields.io/badge/security-bandit-yellow.svg
59
+ :target: https://github.com/PyCQA/bandit
60
+ :alt: Security
61
+
62
+ |
63
+
64
+
65
+ Installation
66
+ ===============================================================================
67
+
68
+ .. code-block:: bash
69
+
70
+ pip install core-genai
71
+ uv pip install core-genai
72
+
73
+
74
+ Features
75
+ ===============================================================================
76
+
77
+
78
+
79
+ Quick Start
80
+ ===============================================================================
81
+
82
+ .. code-block:: bash
83
+
84
+ pip install core-genai
85
+ pip install -e ".[dev]" # For development
86
+
87
+
88
+ Contributing
89
+ ===============================================================================
90
+
91
+ Contributions are welcome! Please:
92
+
93
+ 1. Fork the repository
94
+ 2. Create a feature branch
95
+ 3. Write tests for new functionality
96
+ 4. Ensure all tests pass: ``python manager.py run-tests``
97
+ 5. Run linting: ``pylint core_genai``
98
+ 6. Run security checks: ``bandit -r core_genai``
99
+ 7. Submit a pull request
100
+
101
+
102
+ License
103
+ ===============================================================================
104
+
105
+ This project is licensed under the MIT License. See the LICENSE file for details.
106
+
107
+
108
+ Links
109
+ ===============================================================================
110
+
111
+ * **Documentation:** https://core-genai.readthedocs.io/en/latest/
112
+ * **Repository:** https://gitlab.com/bytecode-solutions/core/core-genai
113
+ * **Issues:** https://gitlab.com/bytecode-solutions/core/core-genai/-/issues
114
+ * **Changelog:** https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/master/CHANGELOG.md
115
+ * **PyPI:** https://pypi.org/project/core-genai/
116
+
117
+
118
+ Support
119
+ ===============================================================================
120
+
121
+ For questions or support, please open an issue on GitLab or contact the maintainers.
122
+
123
+
124
+ Authors
125
+ ===============================================================================
126
+
127
+ * **Alejandro Cora González** - *Initial work* - alek.cora.glez@gmail.com
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.rst
3
+ pyproject.toml
4
+ setup.py
5
+ core_genai/__init__.py
6
+ core_genai/py.typed
7
+ core_genai.egg-info/PKG-INFO
8
+ core_genai.egg-info/SOURCES.txt
9
+ core_genai.egg-info/dependency_links.txt
10
+ core_genai.egg-info/requires.txt
11
+ core_genai.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+
2
+ [dev]
3
+ core-dev-tools>=2.0.0
4
+ core-tests>=2.1.0
@@ -0,0 +1 @@
1
+ core_genai
@@ -0,0 +1,61 @@
1
+ # Other project metadata fields as specified in:
2
+ # https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
3
+ # https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
4
+
5
+ [build-system]
6
+ requires = ["setuptools>=61.0.0", "wheel"]
7
+ build-backend = "setuptools.build_meta"
8
+
9
+ [project]
10
+ name = "core-genai"
11
+ description = "A library that provides common utilities AI-related."
12
+ version = "0.0.0"
13
+
14
+ authors = [
15
+ {name = "Alejandro Cora González", email = "alek.cora.glez@gmail.com"}
16
+ ]
17
+
18
+ maintainers = [
19
+ {name = "Alejandro Cora González"}
20
+ ]
21
+
22
+ requires-python = ">=3.9"
23
+ license = "MIT"
24
+ readme = "README.rst"
25
+
26
+ classifiers = [
27
+ # Classifiers -> https://pypi.org/classifiers/
28
+ "Intended Audience :: Developers",
29
+ "Development Status :: 5 - Production/Stable",
30
+ "Topic :: Software Development :: Libraries :: Python Modules",
31
+ "Topic :: Utilities",
32
+ "Programming Language :: Python",
33
+ "Programming Language :: Python :: 3",
34
+ "Programming Language :: Python :: 3 :: Only",
35
+ "Programming Language :: Python :: 3.9",
36
+ "Programming Language :: Python :: 3.10",
37
+ "Programming Language :: Python :: 3.11",
38
+ "Programming Language :: Python :: 3.12",
39
+ "Programming Language :: Python :: 3.13",
40
+ "Programming Language :: Python :: 3.14",
41
+ "Programming Language :: Python :: Implementation :: PyPy",
42
+ ]
43
+
44
+ dependencies = [
45
+ ]
46
+
47
+ [project.optional-dependencies]
48
+ dev = [
49
+ "core-dev-tools>=2.0.0",
50
+ "core-tests>=2.1.0",
51
+ ]
52
+
53
+ [project.urls]
54
+ Homepage = "https://gitlab.com/bytecode-solutions/core/core-genai"
55
+ Repository = "https://gitlab.com/bytecode-solutions/core/core-genai"
56
+ Documentation = "https://core-genai.readthedocs.io/en/latest/"
57
+ Issues = "https://gitlab.com/bytecode-solutions/core/core-genai/-/issues"
58
+ Changelog = "https://gitlab.com/bytecode-solutions/core/core-genai/-/blob/master/CHANGELOG.md"
59
+
60
+ [tool.setuptools.package-data]
61
+ "core_genai" = ["py.typed"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ from setuptools import setup
4
+
5
+
6
+ setup()