-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New exception classes to use with
argumentify
!
- Loading branch information
1 parent
130bb8b
commit 5e13bcd
Showing
7 changed files
with
190 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,28 +5,28 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "log21" | ||
authors = [ | ||
{name = "CodeWriter21(Mehrad Pooryoussof)", email = "[email protected]"} | ||
{name = "CodeWriter21(Mehrad Pooryoussof)", email = "[email protected]"} | ||
] | ||
description = "A simple logging package that helps you log colorized messages in Windows console." | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
requires-python = ">=3.8" | ||
keywords = ['python', 'log', 'colorize', 'color', 'logging', 'Python3', 'CodeWriter21'] | ||
license = {text = "Apache License 2.0"} | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Operating System :: Unix", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS :: MacOS X" | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Operating System :: Unix", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS :: MacOS X" | ||
] | ||
dependencies = [ | ||
"webcolors", | ||
"docstring-parser" | ||
"webcolors", | ||
"docstring-parser" | ||
] | ||
version = "2.9.2" | ||
version = "2.10.0" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
@@ -43,11 +43,11 @@ dev = ["yapf", "isort", "docformatter", "pylint", "json5", "pytest"] | |
max-line-length = 88 | ||
|
||
disable = [ | ||
"too-few-public-methods", | ||
"too-many-arguments", | ||
"protected-access", | ||
"too-many-locals", | ||
"fixme", | ||
"too-few-public-methods", | ||
"too-many-arguments", | ||
"protected-access", | ||
"too-many-locals", | ||
"fixme", | ||
] | ||
|
||
[tool.pylint.design] | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters