Broytman Library for Python.
Author: Oleg Broytman <phd@phdru.name>.
-Copyright (C) 1996-2023 PhiloSoft Design.
+Copyright (C) 1996-2025 PhiloSoft Design.
License: GPL.
Content of the namespace package:
-"""Broytman Library for Python, Copyright (C) 1996-2023 PhiloSoft Design"""
+"""Broytman Library for Python, Copyright (C) 1996-2025 PhiloSoft Design"""
-from pkgutil import extend_path
-import sys
-
-__path__ = extend_path(__path__, __name__)
-if sys.version_info < (3, 7):
+try:
__import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
setup(
name = "m_lib.defenc",
- version = "1.1.0.post2",
+ version = "1.1.1",
description = "Get default encoding",
- long_description = "Get default encoding. A part of Broytman Library for Python, Copyright (C) 1996-2023 PhiloSoft Design",
+ long_description = "Get default encoding. A part of Broytman Library for Python, Copyright (C) 1996-2025 PhiloSoft Design",
long_description_content_type="text/plain",
author = "Oleg Broytman",
author_email = "phd@phdru.name",
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
+ 'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],