Metadata-Version: 2.4
Name: ezgit-sync
Version: 0.1.1
Summary: This package is a basic git automator for deep learning and machine learning tasks.
Project-URL: bugs, https://github.com/hasanaliozkan-dev/autogit/issues
Project-URL: changelog, https://github.com/hasanaliozkan-dev/autogit/releases
Project-URL: documentation, https://hasanaliozkan-dev.github.io/autogit/
Project-URL: homepage, https://github.com/hasanaliozkan-dev/autogit
Author-email: Hasan Ali Özkan <hasanaliozkan@mu.edu.tr>
Maintainer-email: Hasan Ali Özkan <hasanaliozkan@mu.edu.tr>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: rich
Requires-Dist: typer
Description-Content-Type: text/markdown

# ezgit-sync

![PyPI version](https://img.shields.io/pypi/v/autogit.svg)

This package is a basic git automator for deep learning and machine learning tasks.

* [GitHub](https://github.com/hasanaliozkan-dev/autogit/) | [PyPI](https://pypi.org/project/autogit/) | [Documentation](https://hasanaliozkan-dev.github.io/autogit/)
* Created by [Hasan Ali Özkan](https://hasanaliozkan-dev.github.io/) | GitHub [@hasanaliozkan-dev](https://github.com/hasanaliozkan-dev) | PyPI [@hasanaliozkan](https://pypi.org/user/hasanaliozkan/)
* MIT License

## Features

* TODO

## Documentation

Documentation is built with [Zensical](https://zensical.org/) and deployed to GitHub Pages.

* **Live site:** https://hasanaliozkan-dev.github.io/autogit/
* **Preview locally:** `just docs-serve` (serves at http://localhost:8000)
* **Build:** `just docs-build`

API documentation is auto-generated from docstrings using [mkdocstrings](https://mkdocstrings.github.io/).

Docs deploy automatically on push to `main` via GitHub Actions. To enable this, go to your repo's Settings > Pages and set the source to **GitHub Actions**.

## Development

To set up for local development:

```sh
# Clone your fork
git clone git@github.com:your_username/autogit.git
cd autogit

# Install dependencies
uv sync

# Create a branch for development
git checkout -b feature/new-awesome-feature
```

This installs the CLI globally but with live updates - any changes you make to the source code are immediately available when you run `autogit`.

Run tests:

```bash
uv run pytest
```

Run quality checks (format, lint, type check, test):

```bash
just qa
```

## Author

auto_git was created in 2026 by Hasan Ali Özkan.

Built with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [audreyfeldroy/cookiecutter-pypackage](https://github.com/audreyfeldroy/cookiecutter-pypackage) project template.
