itw-python-builder 0.1.10__tar.gz → 0.1.12__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.
Files changed (16) hide show
  1. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/PKG-INFO +1 -1
  2. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder/.pylintrc +22 -20
  3. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/PKG-INFO +1 -1
  4. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/pyproject.toml +1 -1
  5. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/LICENSE +0 -0
  6. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/README.md +0 -0
  7. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder/__init__.py +0 -0
  8. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder/cli.py +0 -0
  9. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder/tasks.py +0 -0
  10. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder/version.py +0 -0
  11. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/SOURCES.txt +0 -0
  12. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/dependency_links.txt +0 -0
  13. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/entry_points.txt +0 -0
  14. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/requires.txt +0 -0
  15. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/itw_python_builder.egg-info/top_level.txt +0 -0
  16. {itw_python_builder-0.1.10 → itw_python_builder-0.1.12}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: itw_python_builder
3
- Version: 0.1.10
3
+ Version: 0.1.12
4
4
  Summary: Standardized Django deployment pipeline with Docker, testing, and SonarQube integration
5
5
  Author-email: IT-Works <contact@it-works.io>
6
6
  License: MIT
@@ -310,10 +310,10 @@ max-bool-expr=5
310
310
  max-branches=12
311
311
 
312
312
  # Maximum number of locals for function / method body.
313
- max-locals=15
313
+ max-locals=25
314
314
 
315
315
  # Maximum number of parents for a class (see R0901).
316
- max-parents=7
316
+ max-parents=15
317
317
 
318
318
  # Maximum number of positional arguments for function / method.
319
319
  max-positional-arguments=5
@@ -439,23 +439,25 @@ confidence=HIGH,
439
439
  # --enable=similarities". If you want to run only the classes checker, but have
440
440
  # no Warning level messages displayed, use "--disable=all --enable=classes
441
441
  # --disable=W".
442
- disable=raw-checker-failed,
443
- W0223,
444
- E1101,
445
- C0114,
446
- C0115,
447
- C0116,
448
- C0304,
449
- R0903,
450
- bad-inline-option,
451
- locally-disabled,
452
- file-ignored,
453
- suppressed-message,
454
- useless-suppression,
455
- deprecated-pragma,
456
- use-symbolic-message-instead,
457
- use-implicit-booleaness-not-comparison-to-string,
458
- use-implicit-booleaness-not-comparison-to-zero
442
+ disable=raw-checker-failed, # internal pylint checker error
443
+ W0223, # abstract-method not overridden
444
+ E1101, # no-member (false positives with Django ORM)
445
+ C0114, # missing-module-docstring
446
+ C0115, # missing-class-docstring
447
+ C0116, # missing-function-docstring
448
+ C0304, # missing-final-newline
449
+ R0903, # too-few-public-methods (Django Meta classes)
450
+ W0718, # broad-exception-caught
451
+ W0719, # broad-exception-raised
452
+ bad-inline-option, # unrecognized inline pylint option
453
+ locally-disabled, # warning about locally disabled messages
454
+ file-ignored, # warning about ignored files
455
+ suppressed-message, # warning about suppressed messages
456
+ useless-suppression, # unnecessary pylint: disable comment
457
+ deprecated-pragma, # old-style pylint pragma
458
+ use-symbolic-message-instead, # use message name instead of code
459
+ use-implicit-booleaness-not-comparison-to-string, # compare to string instead of using bool
460
+ use-implicit-booleaness-not-comparison-to-zero # compare to zero instead of using bool
459
461
 
460
462
  # Enable the message, report, category or checker with the given id(s). You can
461
463
  # either give multiple identifier separated by comma (,) or put this option
@@ -662,7 +664,7 @@ callbacks=cb_,
662
664
  dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
663
665
 
664
666
  # Argument names that match this expression will be ignored.
665
- ignored-argument-names=_.*|^ignored_|^unused_
667
+ ignored-argument-names=_.*|^ignored_|^unused_|^args$|^kwargs$
666
668
 
667
669
  # Tells whether we should check for unused import in __init__ files.
668
670
  init-import=no
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: itw_python_builder
3
- Version: 0.1.10
3
+ Version: 0.1.12
4
4
  Summary: Standardized Django deployment pipeline with Docker, testing, and SonarQube integration
5
5
  Author-email: IT-Works <contact@it-works.io>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "itw_python_builder"
7
- version = "0.1.10"
7
+ version = "0.1.12"
8
8
  description = "Standardized Django deployment pipeline with Docker, testing, and SonarQube integration"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"