core-redis 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,180 @@
1
+ Metadata-Version: 2.4
2
+ Name: core-redis
3
+ Version: 0.0.0
4
+ Summary: This project/library contains common elements related to Redis integration...
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-redis
9
+ Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-redis
10
+ Project-URL: Documentation, https://core-redis.readthedocs.io/en/latest/
11
+ Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-redis/-/issues
12
+ Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-redis/-/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 :: 3
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Programming Language :: Python :: 3.14
25
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
26
+ Requires-Python: >=3.9
27
+ Description-Content-Type: text/x-rst
28
+ License-File: LICENSE
29
+ Provides-Extra: dev
30
+ Requires-Dist: core-dev-tools>=1.2.1; extra == "dev"
31
+ Requires-Dist: core-tests>=2.0.5; extra == "dev"
32
+ Dynamic: license-file
33
+
34
+ core-redis
35
+ ===============================================================================
36
+
37
+ This project/library contains common elements related
38
+ to Redis integration...
39
+
40
+ ===============================================================================
41
+
42
+ .. image:: https://img.shields.io/pypi/pyversions/core-redis.svg
43
+ :target: https://pypi.org/project/core-redis/
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-redis/-/blob/main/LICENSE
48
+ :alt: License
49
+
50
+ .. image:: https://gitlab.com/bytecode-solutions/core/core-redis/badges/release/pipeline.svg
51
+ :target: https://gitlab.com/bytecode-solutions/core/core-redis/-/pipelines
52
+ :alt: Pipeline Status
53
+
54
+ .. image:: https://readthedocs.org/projects/core-redis/badge/?version=latest
55
+ :target: https://readthedocs.org/projects/core-redis/
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
+ Install from PyPI using pip:
69
+
70
+ .. code-block:: bash
71
+
72
+ pip install core-redis
73
+ uv pip install core-redis # Or using UV...
74
+
75
+
76
+ Features
77
+ ===============================================================================
78
+
79
+ - "..."
80
+
81
+
82
+
83
+ Quick Start
84
+ ===============================================================================
85
+
86
+ Installation
87
+ -------------------------------------------------------------------------------
88
+
89
+ Install the package:
90
+
91
+ .. code-block:: bash
92
+
93
+ pip install core-redis
94
+ uv pip install core-redis # Or using UV...
95
+ pip install -e ".[dev]" # For development...
96
+
97
+
98
+ Setting Up Environment
99
+ -------------------------------------------------------------------------------
100
+
101
+ 1. Install required libraries:
102
+
103
+ .. code-block:: bash
104
+
105
+ pip install --upgrade pip
106
+ pip install virtualenv
107
+
108
+ 2. Create Python virtual environment:
109
+
110
+ .. code-block:: bash
111
+
112
+ virtualenv --python=python3.12 .venv
113
+
114
+ 3. Activate the virtual environment:
115
+
116
+ .. code-block:: bash
117
+
118
+ source .venv/bin/activate
119
+
120
+ Install packages
121
+ -------------------------------------------------------------------------------
122
+
123
+ .. code-block:: bash
124
+
125
+ pip install .
126
+ pip install -e ".[dev]"
127
+
128
+ Check tests and coverage
129
+ -------------------------------------------------------------------------------
130
+
131
+ .. code-block:: shell
132
+
133
+ python manager.py run-tests
134
+ python manager.py run-tests --test-type integration
135
+ python manager.py run-coverage
136
+
137
+ # For functional tests...
138
+ python manager.py run-tests --test-type functional --pattern "*.py"
139
+
140
+
141
+ Contributing
142
+ ===============================================================================
143
+
144
+ Contributions are welcome! Please:
145
+
146
+ 1. Fork the repository
147
+ 2. Create a feature branch
148
+ 3. Write tests for new functionality
149
+ 4. Ensure all tests pass: ``pytest -n auto``
150
+ 5. Run linting: ``pylint core_redis``
151
+ 6. Run security checks: ``bandit -r core_redis``
152
+ 7. Submit a pull request
153
+
154
+
155
+ License
156
+ ===============================================================================
157
+
158
+ This project is licensed under the MIT License. See the LICENSE file for details.
159
+
160
+
161
+ Links
162
+ ===============================================================================
163
+
164
+ * **Documentation:** https://core-redis.readthedocs.io/en/latest/
165
+ * **Repository:** https://gitlab.com/bytecode-solutions/core/core-redis
166
+ * **Issues:** https://gitlab.com/bytecode-solutions/core/core-redis/-/issues
167
+ * **Changelog:** https://gitlab.com/bytecode-solutions/core/core-redis/-/blob/master/CHANGELOG.md
168
+ * **PyPI:** https://pypi.org/project/core-redis/
169
+
170
+
171
+ Support
172
+ ===============================================================================
173
+
174
+ For questions or support, please open an issue on GitLab or contact the maintainers.
175
+
176
+
177
+ Authors
178
+ ===============================================================================
179
+
180
+ * **Alejandro Cora González** - *Initial work* - alek.cora.glez@gmail.com
@@ -0,0 +1,147 @@
1
+ core-redis
2
+ ===============================================================================
3
+
4
+ This project/library contains common elements related
5
+ to Redis integration...
6
+
7
+ ===============================================================================
8
+
9
+ .. image:: https://img.shields.io/pypi/pyversions/core-redis.svg
10
+ :target: https://pypi.org/project/core-redis/
11
+ :alt: Python Versions
12
+
13
+ .. image:: https://img.shields.io/badge/license-MIT-blue.svg
14
+ :target: https://gitlab.com/bytecode-solutions/core/core-redis/-/blob/main/LICENSE
15
+ :alt: License
16
+
17
+ .. image:: https://gitlab.com/bytecode-solutions/core/core-redis/badges/release/pipeline.svg
18
+ :target: https://gitlab.com/bytecode-solutions/core/core-redis/-/pipelines
19
+ :alt: Pipeline Status
20
+
21
+ .. image:: https://readthedocs.org/projects/core-redis/badge/?version=latest
22
+ :target: https://readthedocs.org/projects/core-redis/
23
+ :alt: Docs Status
24
+
25
+ .. image:: https://img.shields.io/badge/security-bandit-yellow.svg
26
+ :target: https://github.com/PyCQA/bandit
27
+ :alt: Security
28
+
29
+ |
30
+
31
+
32
+ Installation
33
+ ===============================================================================
34
+
35
+ Install from PyPI using pip:
36
+
37
+ .. code-block:: bash
38
+
39
+ pip install core-redis
40
+ uv pip install core-redis # Or using UV...
41
+
42
+
43
+ Features
44
+ ===============================================================================
45
+
46
+ - "..."
47
+
48
+
49
+
50
+ Quick Start
51
+ ===============================================================================
52
+
53
+ Installation
54
+ -------------------------------------------------------------------------------
55
+
56
+ Install the package:
57
+
58
+ .. code-block:: bash
59
+
60
+ pip install core-redis
61
+ uv pip install core-redis # Or using UV...
62
+ pip install -e ".[dev]" # For development...
63
+
64
+
65
+ Setting Up Environment
66
+ -------------------------------------------------------------------------------
67
+
68
+ 1. Install required libraries:
69
+
70
+ .. code-block:: bash
71
+
72
+ pip install --upgrade pip
73
+ pip install virtualenv
74
+
75
+ 2. Create Python virtual environment:
76
+
77
+ .. code-block:: bash
78
+
79
+ virtualenv --python=python3.12 .venv
80
+
81
+ 3. Activate the virtual environment:
82
+
83
+ .. code-block:: bash
84
+
85
+ source .venv/bin/activate
86
+
87
+ Install packages
88
+ -------------------------------------------------------------------------------
89
+
90
+ .. code-block:: bash
91
+
92
+ pip install .
93
+ pip install -e ".[dev]"
94
+
95
+ Check tests and coverage
96
+ -------------------------------------------------------------------------------
97
+
98
+ .. code-block:: shell
99
+
100
+ python manager.py run-tests
101
+ python manager.py run-tests --test-type integration
102
+ python manager.py run-coverage
103
+
104
+ # For functional tests...
105
+ python manager.py run-tests --test-type functional --pattern "*.py"
106
+
107
+
108
+ Contributing
109
+ ===============================================================================
110
+
111
+ Contributions are welcome! Please:
112
+
113
+ 1. Fork the repository
114
+ 2. Create a feature branch
115
+ 3. Write tests for new functionality
116
+ 4. Ensure all tests pass: ``pytest -n auto``
117
+ 5. Run linting: ``pylint core_redis``
118
+ 6. Run security checks: ``bandit -r core_redis``
119
+ 7. Submit a pull request
120
+
121
+
122
+ License
123
+ ===============================================================================
124
+
125
+ This project is licensed under the MIT License. See the LICENSE file for details.
126
+
127
+
128
+ Links
129
+ ===============================================================================
130
+
131
+ * **Documentation:** https://core-redis.readthedocs.io/en/latest/
132
+ * **Repository:** https://gitlab.com/bytecode-solutions/core/core-redis
133
+ * **Issues:** https://gitlab.com/bytecode-solutions/core/core-redis/-/issues
134
+ * **Changelog:** https://gitlab.com/bytecode-solutions/core/core-redis/-/blob/master/CHANGELOG.md
135
+ * **PyPI:** https://pypi.org/project/core-redis/
136
+
137
+
138
+ Support
139
+ ===============================================================================
140
+
141
+ For questions or support, please open an issue on GitLab or contact the maintainers.
142
+
143
+
144
+ Authors
145
+ ===============================================================================
146
+
147
+ * **Alejandro Cora González** - *Initial work* - alek.cora.glez@gmail.com
@@ -0,0 +1,11 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ from importlib.metadata import PackageNotFoundError
4
+ from importlib.metadata import version
5
+
6
+
7
+ try:
8
+ __version__ = version("core-redis")
9
+
10
+ except PackageNotFoundError:
11
+ __version__ = "unknown"
File without changes
@@ -0,0 +1,180 @@
1
+ Metadata-Version: 2.4
2
+ Name: core-redis
3
+ Version: 0.0.0
4
+ Summary: This project/library contains common elements related to Redis integration...
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-redis
9
+ Project-URL: Repository, https://gitlab.com/bytecode-solutions/core/core-redis
10
+ Project-URL: Documentation, https://core-redis.readthedocs.io/en/latest/
11
+ Project-URL: Issues, https://gitlab.com/bytecode-solutions/core/core-redis/-/issues
12
+ Project-URL: Changelog, https://gitlab.com/bytecode-solutions/core/core-redis/-/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 :: 3
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Programming Language :: Python :: 3.14
25
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
26
+ Requires-Python: >=3.9
27
+ Description-Content-Type: text/x-rst
28
+ License-File: LICENSE
29
+ Provides-Extra: dev
30
+ Requires-Dist: core-dev-tools>=1.2.1; extra == "dev"
31
+ Requires-Dist: core-tests>=2.0.5; extra == "dev"
32
+ Dynamic: license-file
33
+
34
+ core-redis
35
+ ===============================================================================
36
+
37
+ This project/library contains common elements related
38
+ to Redis integration...
39
+
40
+ ===============================================================================
41
+
42
+ .. image:: https://img.shields.io/pypi/pyversions/core-redis.svg
43
+ :target: https://pypi.org/project/core-redis/
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-redis/-/blob/main/LICENSE
48
+ :alt: License
49
+
50
+ .. image:: https://gitlab.com/bytecode-solutions/core/core-redis/badges/release/pipeline.svg
51
+ :target: https://gitlab.com/bytecode-solutions/core/core-redis/-/pipelines
52
+ :alt: Pipeline Status
53
+
54
+ .. image:: https://readthedocs.org/projects/core-redis/badge/?version=latest
55
+ :target: https://readthedocs.org/projects/core-redis/
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
+ Install from PyPI using pip:
69
+
70
+ .. code-block:: bash
71
+
72
+ pip install core-redis
73
+ uv pip install core-redis # Or using UV...
74
+
75
+
76
+ Features
77
+ ===============================================================================
78
+
79
+ - "..."
80
+
81
+
82
+
83
+ Quick Start
84
+ ===============================================================================
85
+
86
+ Installation
87
+ -------------------------------------------------------------------------------
88
+
89
+ Install the package:
90
+
91
+ .. code-block:: bash
92
+
93
+ pip install core-redis
94
+ uv pip install core-redis # Or using UV...
95
+ pip install -e ".[dev]" # For development...
96
+
97
+
98
+ Setting Up Environment
99
+ -------------------------------------------------------------------------------
100
+
101
+ 1. Install required libraries:
102
+
103
+ .. code-block:: bash
104
+
105
+ pip install --upgrade pip
106
+ pip install virtualenv
107
+
108
+ 2. Create Python virtual environment:
109
+
110
+ .. code-block:: bash
111
+
112
+ virtualenv --python=python3.12 .venv
113
+
114
+ 3. Activate the virtual environment:
115
+
116
+ .. code-block:: bash
117
+
118
+ source .venv/bin/activate
119
+
120
+ Install packages
121
+ -------------------------------------------------------------------------------
122
+
123
+ .. code-block:: bash
124
+
125
+ pip install .
126
+ pip install -e ".[dev]"
127
+
128
+ Check tests and coverage
129
+ -------------------------------------------------------------------------------
130
+
131
+ .. code-block:: shell
132
+
133
+ python manager.py run-tests
134
+ python manager.py run-tests --test-type integration
135
+ python manager.py run-coverage
136
+
137
+ # For functional tests...
138
+ python manager.py run-tests --test-type functional --pattern "*.py"
139
+
140
+
141
+ Contributing
142
+ ===============================================================================
143
+
144
+ Contributions are welcome! Please:
145
+
146
+ 1. Fork the repository
147
+ 2. Create a feature branch
148
+ 3. Write tests for new functionality
149
+ 4. Ensure all tests pass: ``pytest -n auto``
150
+ 5. Run linting: ``pylint core_redis``
151
+ 6. Run security checks: ``bandit -r core_redis``
152
+ 7. Submit a pull request
153
+
154
+
155
+ License
156
+ ===============================================================================
157
+
158
+ This project is licensed under the MIT License. See the LICENSE file for details.
159
+
160
+
161
+ Links
162
+ ===============================================================================
163
+
164
+ * **Documentation:** https://core-redis.readthedocs.io/en/latest/
165
+ * **Repository:** https://gitlab.com/bytecode-solutions/core/core-redis
166
+ * **Issues:** https://gitlab.com/bytecode-solutions/core/core-redis/-/issues
167
+ * **Changelog:** https://gitlab.com/bytecode-solutions/core/core-redis/-/blob/master/CHANGELOG.md
168
+ * **PyPI:** https://pypi.org/project/core-redis/
169
+
170
+
171
+ Support
172
+ ===============================================================================
173
+
174
+ For questions or support, please open an issue on GitLab or contact the maintainers.
175
+
176
+
177
+ Authors
178
+ ===============================================================================
179
+
180
+ * **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_redis/__init__.py
6
+ core_redis/py.typed
7
+ core_redis.egg-info/PKG-INFO
8
+ core_redis.egg-info/SOURCES.txt
9
+ core_redis.egg-info/dependency_links.txt
10
+ core_redis.egg-info/requires.txt
11
+ core_redis.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+
2
+ [dev]
3
+ core-dev-tools>=1.2.1
4
+ core-tests>=2.0.5
@@ -0,0 +1 @@
1
+ core_redis
@@ -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-redis"
11
+ description = "This project/library contains common elements related to Redis integration..."
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 :: 3",
33
+ "Programming Language :: Python :: 3 :: Only",
34
+ "Programming Language :: Python :: 3.9",
35
+ "Programming Language :: Python :: 3.10",
36
+ "Programming Language :: Python :: 3.11",
37
+ "Programming Language :: Python :: 3.12",
38
+ "Programming Language :: Python :: 3.13",
39
+ "Programming Language :: Python :: 3.14",
40
+ "Programming Language :: Python :: Implementation :: PyPy",
41
+ ]
42
+
43
+ dependencies = [
44
+
45
+ ]
46
+
47
+ [project.optional-dependencies]
48
+ dev = [
49
+ "core-dev-tools>=1.2.1",
50
+ "core-tests>=2.0.5",
51
+ ]
52
+
53
+ [project.urls]
54
+ Homepage = "https://gitlab.com/bytecode-solutions/core/core-redis"
55
+ Repository = "https://gitlab.com/bytecode-solutions/core/core-redis"
56
+ Documentation = "https://core-redis.readthedocs.io/en/latest/"
57
+ Issues = "https://gitlab.com/bytecode-solutions/core/core-redis/-/issues"
58
+ Changelog = "https://gitlab.com/bytecode-solutions/core/core-redis/-/blob/master/CHANGELOG.md"
59
+
60
+ [tool.setuptools.package-data]
61
+ "core_redis" = ["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()