From c2d697511a639e630241383250d848921ac57ec5 Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Thu, 26 Sep 2024 23:13:10 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?= =?UTF-8?q?to=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager --- README.md | 15 +++++++++++++++ favro_sync/__init__.py | 10 ++++++++++ setup.py | 18 +++++++++++++++++- 3 files changed, 42 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 08075db..c88628d 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,21 @@ Filesystem in User Space for Favro. Synchronize your local notes and your Favro. +Uses the [Favro API](https://favro.com/developer/). Rate limiting depends upon +your organization's payment plan. + +Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library. + +Limitations: + +- Only works for TODO files. +- Doesn't include title anywhere. +- Tasks cannot be updated or changed. + +A more complete implementation will probably require a Markdown parser, to +parse the saved input, and distribute it across the various Card fields (card +name, description, tasks, etc...) + # License diff --git a/favro_sync/__init__.py b/favro_sync/__init__.py index 66ca511..0c45c69 100644 --- a/favro_sync/__init__.py +++ b/favro_sync/__init__.py @@ -8,4 +8,14 @@ Uses the [Favro API](https://favro.com/developer/). Rate limiting depends upon your organization's payment plan. Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library. + +Limitations: + +- Only works for TODO files. +- Doesn't include title anywhere. +- Tasks cannot be updated or changed. + +A more complete implementation will probably require a Markdown parser, to +parse the saved input, and distribute it across the various Card fields (card +name, description, tasks, etc...) """ diff --git a/setup.py b/setup.py index e0c504f..0e59457 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,21 @@ PACKAGE_DESCRIPTION = """ Filesystem in User Space for Favro. Synchronize your local notes and your Favro. + +Uses the [Favro API](https://favro.com/developer/). Rate limiting depends upon +your organization's payment plan. + +Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library. + +Limitations: + +- Only works for TODO files. +- Doesn't include title anywhere. +- Tasks cannot be updated or changed. + +A more complete implementation will probably require a Markdown parser, to +parse the saved input, and distribute it across the various Card fields (card +name, description, tasks, etc...) """.strip() PACKAGE_DESCRIPTION_SHORT = """ @@ -38,7 +53,8 @@ REQUIREMENTS_MAIN = [ 'requests', 'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader', ] -REQUIREMENTS_TEST = [] +REQUIREMENTS_TEST = [ +] setup(