Metadata-Version: 2.1
Name: pygitsync
Version: 0.1.0.post2
Summary: A project that does something.
Home-page: https://gitlab.com/ci-cd-devops/pygitsync
Author: Russell Smiley
Author-email: russell@blueskyjunkie.ca
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
Requires-Dist: aiofiles >=0.8.0, <1
Requires-Dist: gitpython >=3.1.27, <4
Requires-Dist: parver >=0.3.1, <1
Requires-Dist: pydantic >=1.9.1, <2
Requires-Dist: python-daemon >=2.3.0, <3
Requires-Dist: ruamel.yaml >=0.17.21, <1
Requires-Dist: build_harness >=1.0.2, <2 ; extra == "dev"
Requires-Dist: pre_commit >=2.13.0, <3 ; extra == "dev"
Requires-Dist: types-aiofiles >=0.8.10, <1 ; extra == "dev"
Requires-Dist: sphinx >=4.0.2, <5 ; extra == "doc"
Requires-Dist: sphinx_rtd_theme >=1.0, <2 ; extra == "doc"
Requires-Dist: pytest >=7.1.1, <8 ; extra == "test"
Requires-Dist: pytest-asyncio >=0.18.3, <1 ; extra == "test"
Requires-Dist: pytest-cov >=3.0, <4 ; extra == "test"
Requires-Dist: pytest-mock >=3.6.1, <4 ; extra == "test"
Provides-Extra: dev
Provides-Extra: doc
Provides-Extra: test

pygitsync
=========

A utility to poll a remote git repository and maintain local state according
simple rules such as the HEAD of a specified branch, or the latest tag
conforming to a regular expression.

.. contents::

.. section-numbering::


Installation
------------

The ``pygitsync`` package is available from PyPI. Installing into a virtual
environment is recommended.

.. code-block::

   python3 -m venv .venv; .venv/bin/pip install pygitsync


