1
0

🤖 Repository layout updated to latest version

This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
This commit is contained in:
Takunomi Automaticus, The 2nd 2024-09-26 23:13:10 +02:00 committed by Jon Michael Aanes
parent b2c32881df
commit c2d697511a
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
3 changed files with 42 additions and 1 deletions

View File

@ -10,6 +10,21 @@ Filesystem in User Space for Favro.
Synchronize your local notes and your 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 # License

View File

@ -8,4 +8,14 @@ Uses the [Favro API](https://favro.com/developer/). Rate limiting depends upon
your organization's payment plan. your organization's payment plan.
Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library. 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...)
""" """

View File

@ -16,6 +16,21 @@ PACKAGE_DESCRIPTION = """
Filesystem in User Space for Favro. Filesystem in User Space for Favro.
Synchronize your local notes and your 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() """.strip()
PACKAGE_DESCRIPTION_SHORT = """ PACKAGE_DESCRIPTION_SHORT = """
@ -38,7 +53,8 @@ REQUIREMENTS_MAIN = [
'requests', 'requests',
'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader', 'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader',
] ]
REQUIREMENTS_TEST = [] REQUIREMENTS_TEST = [
]
setup( setup(