🤖 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:
parent
b2c32881df
commit
c2d697511a
15
README.md
15
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
|
||||
|
||||
|
|
|
@ -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...)
|
||||
"""
|
||||
|
|
18
setup.py
18
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(
|
||||
|
|
Loading…
Reference in New Issue
Block a user