| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [tool.poetry]
- name = "keep_exporter"
- version = "2.0.1"
- description = "Google Keep note exporter utility"
- authors = ["Nathan Beals <ndbeals@users.noreply.github.com>"]
- license = "BSD-3-Clause"
- readme = "README.md"
- homepage = "https://github.com/ndbeals/keep-exporter"
- repository = "https://github.com/ndbeals/keep-exporter"
- keywords = ["google", "google keep", "keep", "note", "export", "archive", "backup"]
- classifiers = [
- "Environment :: Console",
- "Operating System :: OS Independent",
- "Topic :: System :: Archiving",
- "Topic :: System :: Archiving :: Backup",
- "Topic :: Terminals",
- "Topic :: Utilities"
- ]
- include = [
- "LICENSE",
- ]
- [tool.poetry.scripts]
- keep_export = "keep_exporter.cli:main"
- [tool.poetry.dependencies]
- python = "^3.6"
- gkeepapi = "^0.13.4"
- python-frontmatter = "^0.5.0"
- PyYAML = "^5.3.1"
- pathvalidate = "^2.3.2"
- click = "^8.0.1"
- mdutils = "^1.3.0"
- click-config-file = "^0.6.0"
- [tool.poetry.dev-dependencies]
- black = "^21.9b0"
- pylint = "^2.11.1"
- isort = "^5.9.3"
- Sphinx = "^4.2.0"
- sphinx-rtd-theme = "^1.0.0"
- [tool.isort]
- profile = "black"
- src_paths = ["keep_export"]
- [tool.pylint.MASTER]
- max-line-length = 120
- [build-system]
- requires = ["poetry-core>=1.0.0"]
- build-backend = "poetry.core.masonry.api"
|