-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (46 loc) · 1.22 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "keep_exporter"
version = "2.0.1"
description = "Google Keep note exporter utility"
authors = ["Nathan Beals <[email protected]>"]
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"