🤖 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.
|
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
|
||||||
|
|
||||||
|
|
|
@ -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...)
|
||||||
"""
|
"""
|
||||||
|
|
18
setup.py
18
setup.py
|
@ -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(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user