hello-world-andrefellipe 0.1.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.
- hello_world_andrefellipe-0.1.1/PKG-INFO +19 -0
- hello_world_andrefellipe-0.1.1/README.md +3 -0
- hello_world_andrefellipe-0.1.1/pyproject.toml +56 -0
- hello_world_andrefellipe-0.1.1/src/hello_world/__init__.py +3 -0
- hello_world_andrefellipe-0.1.1/src/hello_world/core.py +3 -0
- hello_world_andrefellipe-0.1.1/src/hello_world/py.typed +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hello-world-andrefellipe
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A state-of-the-art Python package boilerplate.
|
|
5
|
+
Author: Andre Fellipe
|
|
6
|
+
Author-email: andrefellipern@gmail.com
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Hello World
|
|
17
|
+
|
|
18
|
+
This is an automated infrastructure template package.
|
|
19
|
+
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "hello-world-andrefellipe"
|
|
3
|
+
version = "0.1.1"
|
|
4
|
+
description = "A state-of-the-art Python package boilerplate."
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "Andre Fellipe",email = "andrefellipern@gmail.com"}
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = [
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[tool.poetry]
|
|
14
|
+
packages = [{include = "hello_world", from = "src"}]
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
18
|
+
build-backend = "poetry.core.masonry.api"
|
|
19
|
+
|
|
20
|
+
[dependency-groups]
|
|
21
|
+
dev = [
|
|
22
|
+
"pytest (>=9.0.3,<10.0.0)",
|
|
23
|
+
"ruff (>=0.15.12,<0.16.0)",
|
|
24
|
+
"mypy (>=2.0.0,<3.0.0)",
|
|
25
|
+
"pytest-cov (>=7.1.0,<8.0.0)",
|
|
26
|
+
"pre-commit (>=4.6.0,<5.0.0)",
|
|
27
|
+
"nox (>=2026.4.10,<2027.0.0)",
|
|
28
|
+
"nox-poetry (>=1.2.0,<2.0.0)",
|
|
29
|
+
"mkdocs-material (>=9.7.6,<10.0.0)",
|
|
30
|
+
"mkdocstrings (>=1.0.4,<2.0.0)",
|
|
31
|
+
"mkdocstrings-python (>=2.0.3,<3.0.0)"
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[tool.ruff]
|
|
35
|
+
line-length = 88
|
|
36
|
+
target-version = "py310"
|
|
37
|
+
|
|
38
|
+
[tool.ruff.lint]
|
|
39
|
+
select = [
|
|
40
|
+
"E", # pycodestyle errors
|
|
41
|
+
"W", # pycodestyle warnings
|
|
42
|
+
"F", # pyflakes
|
|
43
|
+
"I", # isort
|
|
44
|
+
"C", # flake8-comprehensions
|
|
45
|
+
"B", # flake8-bugbear
|
|
46
|
+
]
|
|
47
|
+
ignore = []
|
|
48
|
+
|
|
49
|
+
[tool.mypy]
|
|
50
|
+
strict = true
|
|
51
|
+
warn_return_any = true
|
|
52
|
+
warn_unused_configs = true
|
|
53
|
+
|
|
54
|
+
[tool.pytest.ini_options]
|
|
55
|
+
addopts = "--cov=hello_world --cov-report=term-missing --cov-fail-under=100"
|
|
56
|
+
testpaths = ["tests"]
|
|
File without changes
|