Metadata-Version: 2.1
Name: todo-merger
Version: 0.5.5
Summary: Overview of your assigned issues on GitHub and GitLab
Home-page: https://github.com/mxmehl/todo-merger
License: GPL-3.0-only
Author: Max Mehl
Author-email: mail@mehl.mx
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
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
Requires-Dist: flask (>=3.0.3,<4.0.0)
Requires-Dist: libsass (>=0.23.0,<0.24.0)
Requires-Dist: platformdirs (>=4.2.2,<5.0.0)
Requires-Dist: pygithub (>=2.3.0,<3.0.0)
Requires-Dist: python-daemon (>=3.0.1,<4.0.0)
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
Requires-Dist: python-gitlab (>=4.7.0,<5.0.0)
Requires-Dist: setuptools (>=71.0.3,<72.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Project-URL: Repository, https://github.com/mxmehl/todo-merger
Description-Content-Type: text/markdown

# ToDo Merger

Get an overview of all issues assigned to you on GitHub and one or more GitLab
instances.

Very early stage, contributions and ideas are welcome!


## Installation

### Install and run via pipx (Recommended)

[pipx](https://pypa.github.io/pipx/) makes installing and running Python programs easier and avoid conflicts with other packages. Install it with

```sh
pip3 install pipx
```

The following one-liner both installs and runs this program from [PyPI](https://pypi.org/project/todo-merger/):

```sh
pipx run todo-merger
```

If you want to be able to use todo-merger without prepending it with `pipx run` every time, install it globally like so:

```sh
pipx install todo-merger
```

todo-merger will then be available in `~/.local/bin`, which must be added to your `$PATH`. On Windows, the required path for your environment may look like `%USERPROFILE%\AppData\Roaming\Python\Python310\Scripts`, depending on the Python version you have installed.

To upgrade todo-merger to the newest available version, run this command:

```sh
pipx upgrade todo-merger
```

### Other installation methods

You may also use pure `pip` or `poetry` to install this package.


## Usage

Run `todo-merger`. This will run the application. You can interact with it using your browser on http://localhost:8636.


## Configuration

Upon start, the program will create a new empty configuration file. You will probably run into an error because no login data is present. From the error messages, you can find the config file in which you will have to add your data.

This will surely be improved in the next versions.


## License

The main license of this project is the GNU General Public License 3.0, no later version (`GPL-3.0-only`), Copyright Max Mehl.

There are also parts from third parties under different licenses, e.g. Pico CSS (MIT) and snippets from DB Systel (Apache-2.0). Thank you!

