Metadata-Version: 2.1
Name: py-chocolatey
Version: 0.6.0
Summary: API for Chocolatey, the Package Manager for Windows.
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: zlib/libpng License ; https://opensource.org/license/zlib
Project-URL: Homepage, https://pypi.org/project/py-chocolatey/
Project-URL: Documentation, https://py-chocolatey.readthedocs.io/
Project-URL: Download, https://pypi.org/project/py-chocolatey/
Project-URL: Source, https://github.com/karpierz/py-chocolatey
Project-URL: Issues, https://github.com/karpierz/py-chocolatey/issues
Keywords: chocolatey,choco
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Polish
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <4.0.0,>=3.9.0
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE
Requires-Dist: setuptools>=75.6.0
Requires-Dist: pkg-about>=1.2.5
Requires-Dist: nocasedict>=2.0.4
Requires-Dist: atpublic>=5.0.0
Requires-Dist: regex>=2024.11.6
Provides-Extra: doc
Requires-Dist: Sphinx>=7.4.7; extra == "doc"
Requires-Dist: sphinx-toolbox>=3.8.1; 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.0; 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.5; extra == "doc"
Provides-Extra: test
Requires-Dist: deepdiff>=8.0.1; extra == "test"
Requires-Dist: rich>=13.9.4; extra == "test"

py-chocolatey
=============

Python |package_bold| package provides API for Chocolatey,
the Package Manager for Windows.

Overview
========

TBD...

`PyPI record`_.

`Documentation`_.

Usage
-----

TBD...

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

Prerequisites:

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

Changelog
=========

0.6.0 (2024-12-10)
------------------
- Upgrade chocolatey installer for chocolatey.2.4.1.nupkg
- More unittests.
- 100% code coverage.
- 100% code linting.
- Tox configuration is now in native (toml) format.
- Setup (dependencies) update.

0.5.0 (2024-10-30)
------------------
- Add support for Python 3.13
- Drop support for Python 3.8
- Setup (dependencies) update.

0.4.1 (2024-06-20)
------------------
- Upgrade chocolatey installer for chocolatey.2.3.0.nupkg
- Setup (dependencies) update.

0.4.0 (2024-01-26)
------------------
- Setup update (now based on tox >= 4.0).
- Add support for Python 3.12
- Add support for PyPy 3.9 and 3.10
- Copyright year update.
- Cleanup.

0.3.1 (2023-11-24)
------------------
- Fix for info(). Now works for local_only=True.
- Setup cleanup.

0.3.0 (2023-11-22)
------------------
- Drop support for Python 3.7.
- Setup (dependencies) update.

0.2.2 (2023-10-27)
------------------
- Added --yes option as default for push().

0.2.1 (2023-10-13)
------------------
- Fix for setup.

0.2.0 (2023-10-12)
------------------
- Added Chocolatey.setup() for install chocolatey.

0.1.2 (2023-10-11)
------------------
- Fixes for many functions that failed when the source was set.

0.1.1 (2023-10-11)
------------------
- Added missing source_add().
- Fixes for source(s). Now works on unelevated mode.

0.1.0 (2023-10-09)
------------------
- Added support for non-elevated mode.
- Added (mostly raw) unittests.
- First working release.

0.0.2 (2023-10-05)
------------------
- Small fix for run().

0.0.1 (2023-07-13)
------------------
- Initial commit.

0.0.0 (2023-07-07)
------------------
- Initial commit.
