Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

shutup

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shutup - npm Package Compare versions

Comparing version
0.2.0
to
0.3.0
+11
LICENSE
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
+11
-4

@@ -1,10 +0,12 @@

Metadata-Version: 2.1
Metadata-Version: 2.4
Name: shutup
Version: 0.2.0
Version: 0.3.0
Summary: Stop python warnings, no matter what!
License: WTFPL
License-File: LICENSE
Author: Fred Israel
Author-email: fredpublico@gmail.com
Requires-Python: >=3.5,<4.0
Requires-Python: >=3.5
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.5

@@ -15,1 +17,6 @@ Classifier: Programming Language :: Python :: 3.6

Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
[tool.poetry]
name = "shutup"
version = "0.2.0"
version = "0.3.0"
description = "Stop python warnings, no matter what!"
authors = ["Fred Israel <fredpublico@gmail.com>"]
license = "WTFPL"
[tool.poetry.dependencies]
python = "^3.5"
python = ">=3.5"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^5.2"
[build-system]
# using feature not released yet on pypi
requires = ["poetry-core @ git+https://github.com/python-poetry/poetry-core.git@master"]
# requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

@@ -0,1 +1,2 @@

# SPDX-License-Identifier: WTFPL
try:

@@ -2,0 +3,0 @@ from importlib.metadata import version as _version

# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['shutup']
package_data = \
{'': ['*']}
setup_kwargs = {
'name': 'shutup',
'version': '0.2.0',
'description': 'Stop python warnings, no matter what!',
'long_description': None,
'author': 'Fred Israel',
'author_email': 'fredpublico@gmail.com',
'maintainer': None,
'maintainer_email': None,
'url': None,
'packages': packages,
'package_data': package_data,
'python_requires': '>=3.5,<4.0',
}
setup(**setup_kwargs)