Metadata-Version: 2.4
Name: py-utlx
Version: 2.0.1
Summary: Python utilities.
Author-email: Adam Karpierz <adam@karpierz.net>
Maintainer-email: Adam Karpierz <adam@karpierz.net>
License-Expression: Zlib
Project-URL: Homepage, https://pypi.org/project/py-utlx/
Project-URL: Documentation, https://py-utlx.readthedocs.io/
Project-URL: Download, https://pypi.org/project/py-utlx/
Project-URL: Source, https://github.com/karpierz/py-utlx
Project-URL: Issues, https://github.com/karpierz/py-utlx/issues
Keywords: py-utlx,utlx,util,utils
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Polish
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: <4.0.0,>=3.10.0
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE
Requires-Dist: setuptools>=80.9.0
Requires-Dist: typing-extensions>=4.15.0
Requires-Dist: pkg-about>=2.0.0
Requires-Dist: charset-normalizer>=3.4.4
Provides-Extra: doc
Requires-Dist: sphinx>=8.1.3; extra == "doc"
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
Requires-Dist: sphinx-toolbox>=4.0.0; extra == "doc"
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
Requires-Dist: sphinxcontrib-spelling>=8.0.2; extra == "doc"
Requires-Dist: sphinx-lint>=1.0.2; extra == "doc"
Requires-Dist: restructuredtext-lint>=2.0.2; extra == "doc"
Requires-Dist: nbsphinx>=0.9.8; extra == "doc"
Provides-Extra: test
Requires-Dist: deepdiff>=8.6.1; extra == "test"
Requires-Dist: rich>=14.2.0; extra == "test"
Dynamic: license-file

py-utlx
=======

Python utilities.

Overview
========

TBD

`PyPI record`_.

`Documentation`_.

Usage
-----

TBD

Installation
============

Prerequisites:

+ Python 3.10 or higher

  * https://www.python.org/

+ pip and setuptools

  * https://pypi.org/project/pip/
  * https://pypi.org/project/setuptools/

To install run:

  .. parsed-literal::

    python -m pip install --upgrade |package|

Development
===========

Prerequisites:

+ Development is strictly based on *tox*. To install it run::

    python -m pip install --upgrade tox

Visit `Development page`_.

Installation from sources:

clone the sources:

  .. parsed-literal::

    git clone |respository| |package|

and run:

  .. parsed-literal::

    python -m pip install ./|package|

or on development mode:

  .. parsed-literal::

    python -m pip install --editable ./|package|

License
=======

  | |copyright|
  | Licensed under the zlib/libpng License
  | https://opensource.org/license/zlib
  | Please refer to the accompanying LICENSE file.

Authors
=======

* Adam Karpierz <adam@karpierz.net>

.. |package| replace:: py-utlx
.. |package_bold| replace:: **py-utlx**
.. |copyright| replace:: Copyright (c) 2004-2026 Adam Karpierz
.. |respository| replace:: https://github.com/karpierz/py-utlx.git
.. _Development page: https://github.com/karpierz/py-utlx
.. _PyPI record: https://pypi.org/project/py-utlx/
.. _Documentation: https://py-utlx.readthedocs.io/

Changelog
=========

2.0.1 (2025-11-30)
------------------
- utlx.platform.*.capi  - added in_addr_t
- utlx.platform.windows - added winapi
- utlx.platform.macos   - added macos_version()
- utlx.platform.windows.winapi - added OpenProcessToken(),
  GetTokenInformation()
- run(): cleanup and improvements.
- Much better typing.
- Some minor cleanup and unifications.
- Version number alignment (-> 2.x.x).
- Copyright year update.
- Add tox's tool.tox.env.cleanup testenv.
- Setup (dependencies) update.

1.0.0 (2025-09-09)
------------------
- Making and mark the package typed.
- 100% code linting.
- 100% code coverage.
- Setup (dependencies) update.

0.1.0 (2025-09-01)
------------------
- First public release.

0.0.0 (2025-07-17)
------------------
- Initial commit.
