-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (75 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
85 lines (75 loc) · 2.29 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lansweeper-helpdesk"
dynamic = ["version"]
description = "Python SDK for the Lansweeper Helpdesk API — create, search, and manage helpdesk tickets programmatically."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{ name = "Daniel Brandao" },
]
keywords = ["lansweeper", "helpdesk", "api", "sdk", "itsm", "ticketing", "it-service-management"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Typing :: Typed",
]
dependencies = [
"requests>=2.28",
"beautifulsoup4>=4.12",
]
[project.urls]
Homepage = "https://github.com/ds-brandao/Lansweeper.Helpdesk-Python"
Documentation = "https://github.com/ds-brandao/Lansweeper.Helpdesk-Python#readme"
Repository = "https://github.com/ds-brandao/Lansweeper.Helpdesk-Python"
Issues = "https://github.com/ds-brandao/Lansweeper.Helpdesk-Python/issues"
Changelog = "https://github.com/ds-brandao/Lansweeper.Helpdesk-Python/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"responses>=0.23",
"ruff>=0.4",
"mypy>=1.10",
"types-requests>=2.31",
"types-beautifulsoup4>=4.12",
"build>=1.0",
]
[tool.hatch.version]
path = "src/lansweeper_helpdesk/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/lansweeper_helpdesk"]
[tool.hatch.build.targets.sdist]
include = [
"src/",
"tests/",
"LICENSE",
"README.md",
"CHANGELOG.md",
"pyproject.toml",
]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]