Skip to content

Commit 559fa0e

Browse files
committed
update pyproject.toml
1 parent ec8850e commit 559fa0e

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

.vscode/settings.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
{
2-
"python.testing.pytestEnabled": false,
3-
"python.testing.unittestEnabled": true,
2+
"python.testing.pytestEnabled": true,
3+
"python.terminal.activateEnvironment": true,
44
"editor.formatOnSave": true,
55
"modulename": "${workspaceFolderBasename}",
66
"distname": "${workspaceFolderBasename}",
7+
//"venv": "${env:UserProfile}/pygpsclient",
8+
"venv": "${env:HOME}/pygpsclient",
9+
"python.testing.pytestArgs": [
10+
"tests"
11+
],
12+
"C_Cpp.copilotHover": "disabled",
13+
"chat.agent.enabled": false,
14+
"chat.commandCenter.enabled": false,
15+
"chat.notifyWindowOnConfirmation": false,
16+
"telemetry.feedback.enabled": false,
17+
"python.analysis.addHoverSummaries": false,
718
}

pyproject.toml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ dynamic = ["version"]
88
authors = [{ name = "semuadmin", email = "[email protected]" }]
99
maintainers = [{ name = "semuadmin", email = "[email protected]" }]
1010
description = "RTCM3 protocol parser"
11-
license = { file = "LICENSE" }
11+
license = "BSD-3-Clause"
12+
license-files = ["LICENSE"]
1213
readme = "README.md"
1314
requires-python = ">=3.9"
1415
classifiers = [
@@ -27,7 +28,6 @@ classifiers = [
2728
"Programming Language :: Python :: 3.11",
2829
"Programming Language :: Python :: 3.12",
2930
"Programming Language :: Python :: 3.13",
30-
"License :: OSI Approved :: BSD License",
3131
"Topic :: Utilities",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
"Topic :: Scientific/Engineering :: GIS",
@@ -103,3 +103,12 @@ pythonpath = ["src"]
103103

104104
[tool.coverage.run]
105105
source = ["src"]
106+
107+
[tool.coverage.paths]
108+
source = ["src"]
109+
110+
[tool.coverage.report]
111+
fail_under = 15
112+
113+
[tool.coverage.html]
114+
directory = "htmlcov"

0 commit comments

Comments
 (0)