core-extensions 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,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: core-extensions
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: core-tests==1.0.3; extra == "test"
19
+ Dynamic: license-file
20
+
21
+ # project-name
22
+
23
+ _______________________________________________________________________________
24
+
25
+ Project description...
26
+
27
+ ### Create and activate virtual environment.
28
+
29
+ ```commandline
30
+ pip install --upgrade pip virtualenv
31
+ virtualenv --python=python3.11 .venv
32
+ source .venv/bin/activate
33
+ ```
34
+
35
+ ### Install required libraries.
36
+
37
+ ```commandline
38
+ pip install '.[test]'
39
+ ```
40
+
41
+ ### Check tests and coverage...
42
+
43
+ ```commandline
44
+ python manager.py run-tests
45
+ python manager.py run-coverage
46
+ ```
@@ -0,0 +1,26 @@
1
+ # project-name
2
+
3
+ _______________________________________________________________________________
4
+
5
+ Project description...
6
+
7
+ ### Create and activate virtual environment.
8
+
9
+ ```commandline
10
+ pip install --upgrade pip virtualenv
11
+ virtualenv --python=python3.11 .venv
12
+ source .venv/bin/activate
13
+ ```
14
+
15
+ ### Install required libraries.
16
+
17
+ ```commandline
18
+ pip install '.[test]'
19
+ ```
20
+
21
+ ### Check tests and coverage...
22
+
23
+ ```commandline
24
+ python manager.py run-tests
25
+ python manager.py run-coverage
26
+ ```
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: core-extensions
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: core-tests==1.0.3; extra == "test"
19
+ Dynamic: license-file
20
+
21
+ # project-name
22
+
23
+ _______________________________________________________________________________
24
+
25
+ Project description...
26
+
27
+ ### Create and activate virtual environment.
28
+
29
+ ```commandline
30
+ pip install --upgrade pip virtualenv
31
+ virtualenv --python=python3.11 .venv
32
+ source .venv/bin/activate
33
+ ```
34
+
35
+ ### Install required libraries.
36
+
37
+ ```commandline
38
+ pip install '.[test]'
39
+ ```
40
+
41
+ ### Check tests and coverage...
42
+
43
+ ```commandline
44
+ python manager.py run-tests
45
+ python manager.py run-coverage
46
+ ```
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ core_extensions.egg-info/PKG-INFO
6
+ core_extensions.egg-info/SOURCES.txt
7
+ core_extensions.egg-info/dependency_links.txt
8
+ core_extensions.egg-info/requires.txt
9
+ core_extensions.egg-info/top_level.txt
10
+ library_name/__init__.py
@@ -0,0 +1,3 @@
1
+
2
+ [test]
3
+ core-tests==1.0.3
@@ -0,0 +1 @@
1
+ library_name
File without changes
@@ -0,0 +1,45 @@
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", "wheel"]
7
+ build-backend = "setuptools.build_meta"
8
+
9
+ [project]
10
+ name = "core-extensions"
11
+ description = "Project description..."
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 = {text = "MIT"}
24
+ readme = "README.md"
25
+
26
+ classifiers = [
27
+ # Classifiers -> https://pypi.org/classifiers/
28
+ "License :: OSI Approved :: MIT License",
29
+ "Topic :: Software Development :: Libraries :: Python Modules",
30
+ "Programming Language :: Python :: 3",
31
+ "Intended Audience :: Developers",
32
+ "Topic :: Utilities"
33
+ ]
34
+
35
+ dependencies = [
36
+
37
+ ]
38
+
39
+ [project.urls]
40
+ Homepage = "https://gitlab.com/bytecode-solutions/templates/blueprint-python-library"
41
+
42
+ [project.optional-dependencies]
43
+ test = [
44
+ "core-tests==1.0.3"
45
+ ]
@@ -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()