-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
84 lines (73 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
authors = ["mm21 <[email protected]>"]
classifiers = [
# Get the list of trove classifiers here: https://pypi.org/classifiers/
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"License :: OSI Approved :: GNU Affero General Public License v3"
]
description = "Python SDK and CLI toolkit for Trilium Notes"
documentation = "https://mm21.github.io/trilium-alchemy/"
homepage = "https://github.com/mm21/trilium-alchemy"
name = "trilium-alchemy"
packages = [{include = "trilium_alchemy"}]
readme = "README.pypi.md"
version = "0.4.2"
[tool.poetry.dependencies]
pydantic = "^2"
pyrollup = "^0.1.0"
python = "^3.12"
requests = "^2.31.0"
trilium-client = "^0.1.1"
[tool.poetry.group.dev.dependencies]
autoflake = "^2.3.1"
black = "^23.3.0"
doit = "^0.36.0"
furo = "^2023.5.20"
genbadge = {extras = ["all"], version = "^1.1.0"}
isort = "^5.13.2"
mypy = {extras = ["reports"], version = "^1.5.1"}
myst-parser = "^2.0.0"
pyright = "^1.1.329"
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
pytest-dependency = "^0.5.1"
python-dotenv = "^1.0.0"
sphinx = "^7.0.1"
sphinx-autodoc2 = {git = "https://github.com/mm21/sphinx-autodoc2.git"}
sphinx-copybutton = "^0.5.2"
sphinxcontrib-plantuml = "^0.25"
toml-sort = "^0.23.1"
types-requests = "^2.31.0.8"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib -s -v -rA"
testpaths = "test"
[tool.coverage.run]
data_file = "__out__/test/.coverage"
source = ["trilium_alchemy"]
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
"\\.\\.\\.$",
"\\.\\.\\."
]
[tool.black]
line-length = 80
[tool.doit]
verbosity = 2
[tool.isort]
line_length = 80
profile = "black"
[tool.tomlsort]
no_sort_tables = true
sort_table_keys = true
[tool.mypy]
ignore_missing_imports = true
python_version = "3.12"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]