forked from Orange-OpenSource/its-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python/its-vehicle: migrate to PEP517
Signed-off-by: Yann E. MORIN <[email protected]>
- Loading branch information
1 parent
5da7ecd
commit 01942d9
Showing
12 changed files
with
48 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ jobs: | |
- its-interqueuemanager | ||
- its-quadkeys | ||
- its-status | ||
- its-vehicle | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
its-vehicle | ||
=========== | ||
|
||
The _its-vehicle_ application generates [ITS CAM messages | ||
](/schema/cam/cam_schema_1-1-3.json), and listens for any kind of [ITS | ||
message](/schema/) in its vicinity [\*]. It feeds traces of such | ||
exchanges back to an OpenTelemetry collector, to compute round-trip | ||
times of messages in the ITS infra. | ||
|
||
[\*] received messages are not acted upon; they are only monitored to | ||
provide OpenTelemetry traces. | ||
|
||
Configuration | ||
------------- | ||
|
||
See the `its-vehicle.cfg` file for an example configuration file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[build-system] | ||
requires = ["setuptools>=65.5.1"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "its-vehicle" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Yann E. MORIN", email="[email protected]" }, | ||
] | ||
description = "ITS vehicle" | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: POSIX :: Linux", | ||
"Development Status :: 4 - Beta", | ||
] | ||
dependencies = [ | ||
"iot3 @ git+https://github.com/Orange-OpenSource/its-client@2083d20a59c5191a1258ece823c0741fce672443#subdirectory=python/its-iot3", | ||
"its-quadkeys @ git+https://github.com/Orange-OpenSource/its-client@2083d20a59c5191a1258ece823c0741fce672443#subdirectory=python/its-quadkeys", | ||
"linuxfd==1.5", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/Orange-OpenSource/its-client" | ||
"Bug Tracker" = "https://github.com/Orange-OpenSource/its-client/issues" | ||
|
||
[project.scripts] | ||
its-vehicle = "its_vehicle.main:main" |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.