modernpackage 0.0.1.dev1__tar.gz → 0.0.1.dev2__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.
- {modernpackage-0.0.1.dev1 → modernpackage-0.0.1.dev2}/PKG-INFO +2 -2
- {modernpackage-0.0.1.dev1 → modernpackage-0.0.1.dev2}/README.md +1 -1
- {modernpackage-0.0.1.dev1 → modernpackage-0.0.1.dev2}/pyproject.toml +2 -2
- {modernpackage-0.0.1.dev1 → modernpackage-0.0.1.dev2}/.gitignore +0 -0
- {modernpackage-0.0.1.dev1/src → modernpackage-0.0.1.dev2/modernpackage}/__init__.py +0 -0
- {modernpackage-0.0.1.dev1/src → modernpackage-0.0.1.dev2/modernpackage}/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: modernpackage
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.dev2
|
|
4
4
|
Summary: Example package configuration using bleeding edge toolset
|
|
5
5
|
Project-URL: homepage, https://github.com/albertas/modernpackage
|
|
6
6
|
Author-email: Albertas Gimbutas <albertasgim@gmail.com>
|
|
@@ -21,7 +21,7 @@ Requires-Dist: pytest-cov; extra == 'test'
|
|
|
21
21
|
Requires-Dist: ruff; extra == 'test'
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
|
-
#
|
|
24
|
+
# modernpackage
|
|
25
25
|
This package is configured using bleeding edge toolset and serves as an
|
|
26
26
|
example/starting point for another new packages.
|
|
27
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "modernpackage"
|
|
3
|
-
version = "0.0.1.
|
|
3
|
+
version = "0.0.1.dev2"
|
|
4
4
|
authors = [
|
|
5
5
|
{name = "Albertas Gimbutas", email = "albertasgim@gmail.com"},
|
|
6
6
|
]
|
|
@@ -60,7 +60,7 @@ ignore = [
|
|
|
60
60
|
"D213", # multi-line-summary-second-line
|
|
61
61
|
"COM812", # missing-trailing-comma
|
|
62
62
|
"ISC001", # single-line-implicit-string-concatenation
|
|
63
|
-
"ANN101", # deprecated self
|
|
63
|
+
"ANN101", # deprecated requirement to annotate self
|
|
64
64
|
]
|
|
65
65
|
|
|
66
66
|
[tool.ruff.lint.per-file-ignores]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|