core-dev-tools 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.
- core_dev_tools-0.0.0/LICENSE +21 -0
- core_dev_tools-0.0.0/PKG-INFO +45 -0
- core_dev_tools-0.0.0/README.md +26 -0
- core_dev_tools-0.0.0/core_dev_tools.egg-info/PKG-INFO +45 -0
- core_dev_tools-0.0.0/core_dev_tools.egg-info/SOURCES.txt +10 -0
- core_dev_tools-0.0.0/core_dev_tools.egg-info/dependency_links.txt +1 -0
- core_dev_tools-0.0.0/core_dev_tools.egg-info/requires.txt +2 -0
- core_dev_tools-0.0.0/core_dev_tools.egg-info/top_level.txt +1 -0
- core_dev_tools-0.0.0/library_name/__init__.py +0 -0
- core_dev_tools-0.0.0/pyproject.toml +43 -0
- core_dev_tools-0.0.0/setup.cfg +4 -0
- core_dev_tools-0.0.0/setup.py +6 -0
|
@@ -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,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: core-dev-tools
|
|
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.7
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Provides-Extra: test
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
|
|
20
|
+
# project-name
|
|
21
|
+
|
|
22
|
+
_______________________________________________________________________________
|
|
23
|
+
|
|
24
|
+
Project description...
|
|
25
|
+
|
|
26
|
+
### Create and activate virtual environment.
|
|
27
|
+
|
|
28
|
+
```commandline
|
|
29
|
+
pip install --upgrade pip virtualenv
|
|
30
|
+
virtualenv --python=python3.11 .venv
|
|
31
|
+
source .venv/bin/activate
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Install required libraries.
|
|
35
|
+
|
|
36
|
+
```commandline
|
|
37
|
+
pip install '.[test]'
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Check tests and coverage...
|
|
41
|
+
|
|
42
|
+
```commandline
|
|
43
|
+
python manager.py run-tests
|
|
44
|
+
python manager.py run-coverage
|
|
45
|
+
```
|
|
@@ -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,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: core-dev-tools
|
|
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.7
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Provides-Extra: test
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
|
|
20
|
+
# project-name
|
|
21
|
+
|
|
22
|
+
_______________________________________________________________________________
|
|
23
|
+
|
|
24
|
+
Project description...
|
|
25
|
+
|
|
26
|
+
### Create and activate virtual environment.
|
|
27
|
+
|
|
28
|
+
```commandline
|
|
29
|
+
pip install --upgrade pip virtualenv
|
|
30
|
+
virtualenv --python=python3.11 .venv
|
|
31
|
+
source .venv/bin/activate
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Install required libraries.
|
|
35
|
+
|
|
36
|
+
```commandline
|
|
37
|
+
pip install '.[test]'
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Check tests and coverage...
|
|
41
|
+
|
|
42
|
+
```commandline
|
|
43
|
+
python manager.py run-tests
|
|
44
|
+
python manager.py run-coverage
|
|
45
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
setup.py
|
|
5
|
+
core_dev_tools.egg-info/PKG-INFO
|
|
6
|
+
core_dev_tools.egg-info/SOURCES.txt
|
|
7
|
+
core_dev_tools.egg-info/dependency_links.txt
|
|
8
|
+
core_dev_tools.egg-info/requires.txt
|
|
9
|
+
core_dev_tools.egg-info/top_level.txt
|
|
10
|
+
library_name/__init__.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
library_name
|
|
File without changes
|
|
@@ -0,0 +1,43 @@
|
|
|
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-dev-tools"
|
|
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.7"
|
|
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
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://gitlab.com/bytecode-solutions/templates/blueprint-python-library"
|
|
40
|
+
|
|
41
|
+
[project.optional-dependencies]
|
|
42
|
+
test = [
|
|
43
|
+
]
|