-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
53 lines (44 loc) · 1.23 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
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
# Project secton added to support Pixi (by Prefix.dev)
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "trilium-py"
# fetch from setup.py:
dynamic = ["description", "version","requires-python","authors","keywords","classifiers","dependencies","urls","readme","optional-dependencies"]
[tool.black]
skip-string-normalization = true
line-length = 100
target-version = ['py39']
exclude = '''
/(
\.git
| \.tox
| \.venv
| \.history
| build
| dist
| docs
| hack
)/
'''
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["win-64"]
[tool.pixi.pypi-dependencies]
trilium-py = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
python-dateutil = ">=2.9.0,<2.10"
requests-mock = ">=1.12.1,<1.13"