-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
122 lines (107 loc) · 2.71 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[project]
name = "patcherctl"
dynamic = ["readme", "version"]
description = "Fetch patch management data from Jamf Pro to generate comprehensive reports in both Excel and PDF formats"
keywords = ["jamf", "pro", "jss", "patch", "macOS"]
license = { file = "LICENSE.txt" }
authors = [
{ name = "Andrew Speciale" },
{ name = "Chris Ball" },
{ email = "info@liquidzoo.io" },
]
maintainers = [
{ name = "Andrew Speciale" },
{ name = "Chris Ball" },
]
requires-python = ">=3.10"
dependencies = [
"asyncclick>=8.1.7.2",
"fpdf2>=2.7.8",
"keyring>=24.3.1",
"openpyxl>=3.1.2",
"pandas>=2.2.0",
"pyarrow>=15.0.0",
"pydantic>=2.7.4",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Documentation",
"License :: OSI Approved :: Apache Software License"
]
[project.urls]
Homepage = "https://patcher.liquidzoo.io"
Documentation = "https://patcher.liquidzoo.io"
Repository = "https://github.com/liquidz00/Patcher"
Issues = "https://github.com/liquidz00/Patcher/issues/new?assignees=&labels=bug&projects=&template=issue.md&title=%5BISSUE%5D+Your+Issue+Title"
[project.scripts]
patcherctl = "patcher.cli:main"
[project.optional-dependencies]
dev = [
"aioresponses>=0.7.6",
"autodoc-pydantic",
"black>=24.3.0",
"build",
"pydata-sphinx-theme",
"pytest>=8.2.2",
"pytest-asyncio>=0.23.5",
"pytest-cov>=4.0.0",
"ruff>=0.5.1",
"sphinx>=7.3.7",
"sphinx-design",
"sphinx-copybutton",
"myst-parser",
"sphinx-togglebutton",
]
[build-system]
requires = [
"setuptools >= 61",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "patcher.__about__.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E101",
"F401",
"F403",
"I001",
"N801",
"N802",
"N806"
]
per-file-ignores = {"utils/animation.py" = ["F403"]}
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
minversion = "6.0"
addopts = [
"--durations=5",
"--color=yes",
"--cov=src",
"--cov-report=html:coverage/htmlcov",
"--cov-report=term-missing",
]
testpaths = ["./tests"]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::RuntimeWarning",
]