-
-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpyproject.toml
More file actions
157 lines (142 loc) · 3.53 KB
/
pyproject.toml
File metadata and controls
157 lines (142 loc) · 3.53 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
[build-system]
requires = ["setuptools>=75.0.0", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "pygpsclient"
dynamic = ["version"]
authors = [{ name = "Steve Smith", email = "semuadmin@semuconsulting.com" }]
maintainers = [{ name = "Steve Smith", email = "semuadmin@semuconsulting.com" }]
description = "GNSS Diagnostic and UBX Configuration GUI Application"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = [
"PyGPSClient",
"GNSS",
"GPS",
"GALILEO",
"GLONASS",
"BEIDOU",
"NMEA",
"UBX",
"RTCM",
"NTRIP",
"SPARTN",
"RTK",
"DGPS",
"u-center",
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"requests>=2.28.0",
"Pillow>=9.0.0",
"pygnssutils>=1.1.22",
"pyunigps>=0.2.0",
"pynmeagps>=1.1.2",
]
[project.scripts]
pygpsclient = "pygpsclient.__main__:main"
[project.urls]
homepage = "https://github.com/semuconsulting/PyGPSClient"
documentation = "https://www.semuconsulting.com/pygpsclient/"
repository = "https://github.com/semuconsulting/PyGPSClient"
changelog = "https://github.com/semuconsulting/PyGPSClient/blob/master/RELEASE_NOTES.md"
[dependency-groups]
optional = ["rasterio", "cryptography"]
build = [
"awscli",
"build",
"packaging>=24.2",
"pip",
"setuptools>=75.0.0",
"twine>=6.1.0",
"wheel",
]
test = [
"bandit",
"black",
"certifi",
"isort",
"pylint",
"pytest",
"pytest-cov",
"Sphinx",
"sphinx-rtd-theme",
]
deploy = [{ include-group = "build" }, { include-group = "test" }]
[tool.setuptools.dynamic]
version = { attr = "pygpsclient._version.__version__" }
[tool.black]
target-version = ['py310']
[tool.isort]
py_version = 310
profile = "black"
[tool.bandit]
exclude_dirs = ["docs", "examples", "tests"]
skips = [
"B104",
"B311",
"B318",
"B404",
"B408",
"B603",
] # bind 0.0.0.0; randrange; minidom; subroutine
[tool.pylint]
jobs = 0
reports = "y"
recursive = "y"
py-version = "3.10"
fail-under = "9.9"
fail-on = "E,F"
clear-cache-post-run = "y"
good-names = "i,j,x,y"
disable = """
raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
too-many-instance-attributes,
unused-private-member,
too-few-public-methods,
too-many-public-methods,
too-many-locals,
invalid-name,
logging-fstring-interpolation,
"""
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov --cov-report html --cov-fail-under 17"
pythonpath = ["src"]
testpaths = ["tests"]
[tool.coverage.run]
source = ["src"]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.report]
fail_under = 17
[tool.coverage.html]
directory = "htmlcov"