forked from semuconsulting/pygnssutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
115 lines (104 loc) · 3.02 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
[build-system]
requires = ["setuptools>=66.0.0", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "pygnssutils"
authors = [{ name = "semuadmin", email = "[email protected]" }]
maintainers = [{ name = "semuadmin", email = "[email protected]" }]
description = "GNSS Command Line Utilities"
version = "1.1.91"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"certifi>=2024.0.0",
"paho-mqtt>=1.6.0", # waiting for >=2.0.0 in Conda
"pyserial>=3.5",
"pyspartn>=1.0.5",
"pyubx2>=1.2.48",
"pyubxutils>=1.0.2",
]
[project.scripts]
gnssstreamer = "pygnssutils.gnssstreamer_cli:main"
gnssserver = "pygnssutils.gnssserver_cli:main"
gnssntripclient = "pygnssutils.gnssntripclient_cli:main"
gnssmqttclient = "pygnssutils.gnssmqttclient_cli:main"
[project.urls]
homepage = "https://github.com/semuconsulting/pygnssutils"
documentation = "https://www.semuconsulting.com/pygnssutils/"
repository = "https://github.com/semuconsulting/pygnssutils"
changelog = "https://github.com/semuconsulting/pygnssutils/blob/master/RELEASE_NOTES.md"
[project.optional-dependencies]
deploy = ["build", "pip", "setuptools >= 66.0", "wheel"]
test = [
"bandit",
"black",
"isort",
"pylint",
"pytest",
"pytest-cov",
"Sphinx",
"sphinx-rtd-theme",
]
[tool.black]
target-version = ['py39']
[tool.isort]
py_version = 39
profile = "black"
[tool.bandit]
exclude_dirs = ["docs", "examples", "tests"]
skips = [
"B104",
"B105",
"B307",
"B311",
] # bind 0.0.0.0; hard coded pwd, use of eval, random gen
[tool.pylint]
jobs = 0
reports = "y"
recursive = "y"
py-version = "3.9"
fail-under = "9.8"
fail-on = "E,F"
clear-cache-post-run = "y"
disable = """
bad-inline-option,
deprecated-pragma,
duplicate-code,
file-ignored,
locally-disabled,
logging-fstring-interpolation,
raw-checker-failed,
suppressed-message,
too-few-public-methods,
too-many-instance-attributes,
use-symbolic-message-instead,
useless-suppression
"""
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov --cov-report html --cov-fail-under 30"
pythonpath = ["src"]
[tool.coverage.run]
source = ["src"]