v.1.0.47, also cp LICENSE to root dir
This commit is contained in:
parent
a8e4ff49cc
commit
8cfe84cd74
5 changed files with 29 additions and 6 deletions
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Alexander Maples
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,6 +1,8 @@
|
|||
# Firepup650
|
||||
Package containing various shorthand things I use, and a few imports I almost always use
|
||||
### Change log:
|
||||
#### v.1.0.47:
|
||||
Typo fix in safety check
|
||||
#### v.1.0.46:
|
||||
Project metadata update
|
||||
#### v.1.0.45:
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# Firepup650
|
||||
Package containing various shorthand things I use, and a few imports I almost always use
|
||||
### Change log:
|
||||
#### v.1.0.47:
|
||||
Typo fix in safety check
|
||||
#### v.1.0.46:
|
||||
Project metadata update
|
||||
#### v.1.0.45:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "firepup650"
|
||||
version = "1.0.46"
|
||||
version = "1.0.47"
|
||||
authors = ["Firepup650 <firepup650@firepup650.com>"]
|
||||
description = "Package containing various shorthand things I use, and a few imports I almost always use"
|
||||
readme = "README.md"
|
||||
|
@ -23,8 +23,6 @@ python = "^3.8"
|
|||
fkeycapture = "^1.2.7"
|
||||
fpsql = "^1, !=1.0.26"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
|
|
@ -41,8 +41,8 @@ def alias(func):
|
|||
return decorator
|
||||
|
||||
|
||||
__VERSION__ = "1.0.46"
|
||||
__NEW__ = "Project metadata update"
|
||||
__VERSION__ = "1.0.47"
|
||||
__NEW__ = "Typo fix in safety check"
|
||||
__LICENSE__ = "MIT"
|
||||
|
||||
|
||||
|
@ -1033,7 +1033,7 @@ def explode(*_, iKnowWhatIAmDoingLetMeRunTheStupidFunction: bool) -> NoReturn:
|
|||
f"explode() takes 0 positional arguments but {len(_)} were given"
|
||||
)
|
||||
if iKnowWhatIAmDoingLetMeRunTheStupidFunction != True:
|
||||
raise yYuDoNotKnowWhatYouAreDoingException("Let me save you from yourself.")
|
||||
raise youDoNotKnowWhatYouAreDoingException("Let me save you from yourself.")
|
||||
sys.setrecursionlimit(2**31 - 1)
|
||||
|
||||
def recur():
|
||||
|
|
Loading…
Add table
Reference in a new issue