core-https 0.0.0__py3-none-any.whl

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,47 @@
1
+ Metadata-Version: 2.1
2
+ Name: core-https
3
+ Version: 0.0.0
4
+ Summary: Project description...
5
+ Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
6
+ Maintainer: Alejandro Cora González
7
+ License: MIT
8
+ Project-URL: Homepage, https://gitlab.com/bytecode-solutions/templates/blueprint-python-library
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: Utilities
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Provides-Extra: test
18
+ Requires-Dist: click ==8.1.7 ; extra == 'test'
19
+ Requires-Dist: coverage ==7.3.4 ; extra == 'test'
20
+ Requires-Dist: environs ==10.0.0 ; extra == 'test'
21
+
22
+ # project-name
23
+
24
+ _______________________________________________________________________________
25
+
26
+ Project description...
27
+
28
+ ### Create and activate virtual environment.
29
+
30
+ ```commandline
31
+ pip install --upgrade pip virtualenv
32
+ virtualenv --python=python3.11 .venv
33
+ source .venv/bin/activate
34
+ ```
35
+
36
+ ### Install required libraries.
37
+
38
+ ```commandline
39
+ pip install '.[tests]'
40
+ ```
41
+
42
+ ### Check tests and coverage...
43
+
44
+ ```commandline
45
+ python manage.py test
46
+ python manage.py coverage
47
+ ```
@@ -0,0 +1,6 @@
1
+ library_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ core_https-0.0.0.dist-info/LICENSE,sha256=dj8Wz7OWOIOTyLJzaYLn8RFz_W5uYWSGR2xS5lHNAl4,1082
3
+ core_https-0.0.0.dist-info/METADATA,sha256=YuAi_DzRPq1wDYliIkJXNHb4wHGnyg5lLyRKYQYSDf8,1263
4
+ core_https-0.0.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
5
+ core_https-0.0.0.dist-info/top_level.txt,sha256=U45Ee03GMWq0eI0sWjdaGckgE0ZrWitDHs19IzmWvOc,13
6
+ core_https-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ library_name
File without changes