test-packaging-demo-JRO 0.0.1__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.
- test_packaging_demo_jro-0.0.1/PKG-INFO +34 -0
- test_packaging_demo_jro-0.0.1/README.md +10 -0
- test_packaging_demo_jro-0.0.1/pyproject.toml +82 -0
- test_packaging_demo_jro-0.0.1/setup.cfg +4 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo/__init__.py +0 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo/folder/__init__.py +0 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo/folder/modelu2.py +2 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo/module1.py +5 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo_JRO.egg-info/PKG-INFO +34 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo_JRO.egg-info/SOURCES.txt +11 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo_JRO.egg-info/dependency_links.txt +1 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo_JRO.egg-info/requires.txt +19 -0
- test_packaging_demo_jro-0.0.1/test_packaging_demo_JRO.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: test_packaging_demo_JRO
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A package for testing purposes
|
|
5
|
+
Author-email: jjaredro <jjared.ro@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Provides-Extra: test
|
|
11
|
+
Requires-Dist: pytest; extra == "test"
|
|
12
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
13
|
+
Provides-Extra: release
|
|
14
|
+
Requires-Dist: build; extra == "release"
|
|
15
|
+
Requires-Dist: wheel; extra == "release"
|
|
16
|
+
Requires-Dist: twine; extra == "release"
|
|
17
|
+
Provides-Extra: static-code-analysis
|
|
18
|
+
Requires-Dist: pre-commit; extra == "static-code-analysis"
|
|
19
|
+
Requires-Dist: black; extra == "static-code-analysis"
|
|
20
|
+
Requires-Dist: mypy; extra == "static-code-analysis"
|
|
21
|
+
Requires-Dist: pylint; extra == "static-code-analysis"
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: test_packaging_demo_JRO[release,static-code-analysis,test]; extra == "dev"
|
|
24
|
+
|
|
25
|
+
# test_packaging
|
|
26
|
+
|
|
27
|
+
Un paquete de ejemplo para probar la configuraci贸n de empaquetado en Python usando **pyproject.toml**.
|
|
28
|
+
|
|
29
|
+
## 馃摝 Instalaci贸n
|
|
30
|
+
|
|
31
|
+
Clona el repositorio y usa `pip` para instalar las dependencias:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install -r requirements.txt
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# test_packaging
|
|
2
|
+
|
|
3
|
+
Un paquete de ejemplo para probar la configuraci贸n de empaquetado en Python usando **pyproject.toml**.
|
|
4
|
+
|
|
5
|
+
## 馃摝 Instalaci贸n
|
|
6
|
+
|
|
7
|
+
Clona el repositorio y usa `pip` para instalar las dependencias:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install -r requirements.txt
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
#minimun requierments fot the build system to work
|
|
3
|
+
requires = ["setuptools>=61.0.0","wheel"]
|
|
4
|
+
build-backend = "setuptools.build_meta"
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "test_packaging_demo_JRO"
|
|
8
|
+
version = "0.0.1"
|
|
9
|
+
description = "A package for testing purposes"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "jjaredro", email = "jjared.ro@gmail.com" }
|
|
12
|
+
]
|
|
13
|
+
license = { text = "MIT" }
|
|
14
|
+
readme = "README.md"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3.11",
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
"numpy"
|
|
20
|
+
# "importlib-metadata"
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.optional-dependencies]
|
|
24
|
+
test = [
|
|
25
|
+
"pytest",
|
|
26
|
+
"pytest-cov"
|
|
27
|
+
]
|
|
28
|
+
release = [
|
|
29
|
+
"build",
|
|
30
|
+
"wheel",
|
|
31
|
+
"twine"
|
|
32
|
+
]
|
|
33
|
+
static-code-analysis = [
|
|
34
|
+
"pre-commit",
|
|
35
|
+
"black",
|
|
36
|
+
"mypy",
|
|
37
|
+
"pylint"
|
|
38
|
+
]
|
|
39
|
+
dev = ["test_packaging_demo_JRO[test,release,static-code-analysis]"]
|
|
40
|
+
|
|
41
|
+
[black]
|
|
42
|
+
line-length = 110
|
|
43
|
+
exclude = [
|
|
44
|
+
"venv"
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[tool.mypy]
|
|
48
|
+
python_version = "3.11"
|
|
49
|
+
strict = true
|
|
50
|
+
warn_unused_configs = true
|
|
51
|
+
warn_return_any = true
|
|
52
|
+
warn_unused_ignores = true
|
|
53
|
+
disallow_untyped_defs = true
|
|
54
|
+
disallow_incomplete_defs = true
|
|
55
|
+
check_untyped_defs = true
|
|
56
|
+
no_implicit_optional = true
|
|
57
|
+
|
|
58
|
+
[tool.pylint.'MASTER']
|
|
59
|
+
ignore = "venv,migrations"
|
|
60
|
+
extension-pkg-whitelist = ""
|
|
61
|
+
|
|
62
|
+
[tool.pylint.'MESSAGES CONTROL']
|
|
63
|
+
disable = "C0114,C0115,C0116,E0015,E0602,C0303,C0103"
|
|
64
|
+
|
|
65
|
+
[tool.pylint.'REPORTS']
|
|
66
|
+
reports = "no"
|
|
67
|
+
|
|
68
|
+
[tool.pylint.'FORMAT']
|
|
69
|
+
max-line-length = "100"
|
|
70
|
+
|
|
71
|
+
[tool.pylint.'DESIGN']
|
|
72
|
+
max-args = "5"
|
|
73
|
+
max-attributes = "10"
|
|
74
|
+
|
|
75
|
+
[tool.pylint.'IMPORTS']
|
|
76
|
+
allow-relative-imports = "yes"
|
|
77
|
+
|
|
78
|
+
[tool.pylint.'NAMING']
|
|
79
|
+
variable-rgx = "[a-z_][a-z0-9_]{0,30}$"
|
|
80
|
+
function-rgx = "[a-z_][a-z0-9_]{0,30}$"
|
|
81
|
+
class-rgx = "[A-Z][a-zA-Z0-9]+$"
|
|
82
|
+
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: test_packaging_demo_JRO
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A package for testing purposes
|
|
5
|
+
Author-email: jjaredro <jjared.ro@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Provides-Extra: test
|
|
11
|
+
Requires-Dist: pytest; extra == "test"
|
|
12
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
13
|
+
Provides-Extra: release
|
|
14
|
+
Requires-Dist: build; extra == "release"
|
|
15
|
+
Requires-Dist: wheel; extra == "release"
|
|
16
|
+
Requires-Dist: twine; extra == "release"
|
|
17
|
+
Provides-Extra: static-code-analysis
|
|
18
|
+
Requires-Dist: pre-commit; extra == "static-code-analysis"
|
|
19
|
+
Requires-Dist: black; extra == "static-code-analysis"
|
|
20
|
+
Requires-Dist: mypy; extra == "static-code-analysis"
|
|
21
|
+
Requires-Dist: pylint; extra == "static-code-analysis"
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: test_packaging_demo_JRO[release,static-code-analysis,test]; extra == "dev"
|
|
24
|
+
|
|
25
|
+
# test_packaging
|
|
26
|
+
|
|
27
|
+
Un paquete de ejemplo para probar la configuraci贸n de empaquetado en Python usando **pyproject.toml**.
|
|
28
|
+
|
|
29
|
+
## 馃摝 Instalaci贸n
|
|
30
|
+
|
|
31
|
+
Clona el repositorio y usa `pip` para instalar las dependencias:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install -r requirements.txt
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
test_packaging_demo/__init__.py
|
|
4
|
+
test_packaging_demo/module1.py
|
|
5
|
+
test_packaging_demo/folder/__init__.py
|
|
6
|
+
test_packaging_demo/folder/modelu2.py
|
|
7
|
+
test_packaging_demo_JRO.egg-info/PKG-INFO
|
|
8
|
+
test_packaging_demo_JRO.egg-info/SOURCES.txt
|
|
9
|
+
test_packaging_demo_JRO.egg-info/dependency_links.txt
|
|
10
|
+
test_packaging_demo_JRO.egg-info/requires.txt
|
|
11
|
+
test_packaging_demo_JRO.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
test_packaging_demo
|