-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 1.69 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
[project]
name = "python-terminusgps"
version = "54.1.2"
description = "Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more."
readme = "README.md"
authors = [ {name = "Blake Nall", email = "blake@terminusgps.com" } ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
requires-python = ">=3.12"
dependencies = [
"authorizenet>=1.1.5",
"django>=6.0.3",
"py-aiowialon>=1.3.5",
"python-wialon>=1.2.4",
]
[project.urls]
Documentation = "https://terminusgps.github.io/python-terminusgps"
Repository = "https://github.com/terminusgps/python-terminusgps"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["terminusgps/"]
[tool.pyright]
strictListInference = false
strictDictionaryInference = false
strictSetInference = false
typeCheckingMode = "basic"
[tool.ruff]
exclude = [
".git",
".gitignore",
".venv",
"venv",
".vscode",
"__pycache__",
"site-packages",
"dist",
"build",
]
line-length = 79
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
]
ignore = ["F821"]
fixable = [ "ALL" ]
unfixable = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
docstring-code-format = false
skip-magic-trailing-comma = true
[dependency-groups]
dev = [
"coverage>=7.13.4",
"django-stubs>=5.1.3",
]
docs = [
"autoclasstoc>=1.7.0",
"sphinx>=8.2.3",
"sphinxawesome-theme>=5.3.2",
]