Metadata-Version: 2.4
Name: pwsh
Version: 0.3.6
Summary: Provides API for PowerShell.
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License-Expression: Zlib
Project-URL: Homepage, https://pypi.org/project/pwsh/
Project-URL: Documentation, https://pw-sh.readthedocs.io/
Project-URL: Download, https://pypi.org/project/pwsh/
Project-URL: Source, https://github.com/karpierz/pwsh
Project-URL: Issues, https://github.com/karpierz/pwsh/issues
Keywords: powershell,pwsh
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
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 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Python Modules
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: pkg-about>=1.4.0
Requires-Dist: nocasedict>=2.1.0
Requires-Dist: atpublic>=6.0.1
Requires-Dist: zope.proxy>=6.1.0
Requires-Dist: pythonnet>=3.0.5
Requires-Dist: colored>=2.3.1
Requires-Dist: tqdm>=4.67.1
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.1; extra == "doc"
Requires-Dist: sphinx-lint>=1.0.0; extra == "doc"
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
Provides-Extra: test
Requires-Dist: deepdiff>=8.6.0; extra == "test"
Requires-Dist: rich>=14.1.0; extra == "test"
Dynamic: license-file

pwsh
====

Python |package_bold| package provides an API for PowerShell.

Overview
========

TBD...

`PyPI record`_.

`Documentation`_.

Usage
-----

TBD...

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

Prerequisites:

+ Python 3.10 or higher

  * https://www.python.org/
  * ATTENTION: currently works and is only tested under Windows.

+ 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:: pwsh
.. |package_bold| replace:: **pwsh**
.. |copyright| replace:: Copyright (c) 2024-2025 Adam Karpierz
.. |respository| replace:: https://github.com/karpierz/pwsh.git
.. _Development page: https://github.com/karpierz/pwsh
.. _PyPI record: https://pypi.org/project/pwsh/
.. _Documentation: https://pw-sh.readthedocs.io/

Changelog
=========

0.3.6 (2025-08-28)
------------------
- | Import of internal PowerShell assemblies has been improved and is
  | now more portable between different versions of PowerShell.
  | From now on, assemblies are first imported from own PowerShell set.
- Making the package typed (but should be enhanced and more restricted).
- General improvements and cleanup.
- Setup (dependencies) update.

0.3.4 (2025-06-11)
------------------
- Little cleanup.
- Setup (dependencies) update.

0.3.3 (2025-05-15)
------------------
- The distribution is now created using 'build' instead of 'setuptools'.
- Setup (dependencies) update (due to regressions in tox and setuptools).

0.3.2 (2025-05-08)
------------------
- Support for PyPy has been removed (due to problems with pythonnet).
- Drop support for Python 3.9 (due to compatibility issues).
- Add 'Host' property.
- Add 'DebugPreference' property.
- | Bugfix: Most outputs of the Write_*() cmdlet's are now visible in the
  | Python console (outputs of the Write_Output() are still not visible).
- Update readthedocs's python to version 3.13
- Update tox's base_python to version 3.13
- Setup (dependencies) update.

0.2.11 (2025-04-24)
-------------------
- Fix for Stop_Process. -Force is now the default.
- Change base_python to Python 3.13

0.2.9 (2025-04-10)
------------------
- Fix compability for Python >= 3.13

0.2.8 (2025-03-30)
------------------
- Add New_Service().

0.2.6 (2025-03-25)
------------------
- Add LocalApplicationDataPath property.

0.2.5 (2025-03-20)
------------------
- Add support for PyPy 3.11
- Drop support for PyPy 3.9
- Setup (dependencies) update.

0.2.3 (2025-02-14)
------------------
- Setup (dependencies) update.

0.2.2 (2025-02-10)
------------------
- Add reference to the System.ServiceProcess
- Copyright year update.

0.2.0 (2025-02-02)
------------------
- Copyright year update.
- Tox configuration is now in native (toml) format.
- Setup (dependencies) update.

0.1.0 (2024-10-30)
------------------
- First release.

0.0.0 (2024-08-13)
------------------
- Initial commit.
