-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (44 loc) · 924 Bytes
/
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]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools_scm]
write_to = "_version.py"
[project]
name = "pngx"
version = "0.0.1"
authors = [
{ name="martin f. krafft", email="pngx@pobox.madduck.net" },
]
description = "A tool to interact with Paperless NGX"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pypaperless",
"click_extra",
"aiofile",
"platformdirs"
]
[project.optional-dependencies]
dev= [
"ipdb",
"mypy",
"ruff",
"pre-commit"
]
[project.scripts]
pngx = "pngx.cli:main"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["B", "C", "E", "F", "I", "W", "B9"]
[tool.mypy]
strict = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = ["ipdb"]
ignore_missing_imports = true