-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
13 additions
and
33 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 |
---|---|---|
|
@@ -8,3 +8,5 @@ venv/ | |
|
||
test_apps/build | ||
test_apps/install | ||
|
||
build/ |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = someipy | ||
version = 0.0.3 | ||
version = 0.0.4 | ||
author = Christian H. | ||
author_email = [email protected] | ||
description = A Python package implementing the SOME/IP protocol | ||
|
@@ -15,6 +15,7 @@ classifiers = | |
Operating System :: POSIX :: Linux | ||
Operating System :: Microsoft :: Windows | ||
Programming Language :: Python :: 3.8 | ||
license_files = LICENSE.md | ||
|
||
[options] | ||
package_dir = | ||
|
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 |
---|---|---|
@@ -1,21 +1,13 @@ | ||
# Copyright (C) 2024 Christian H. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
from ._internal.someip_sd_header import TransportLayerProtocol # noqa: F401 | ||
from .service import Service, ServiceBuilder, EventGroup # noqa: F401 | ||
from .server_service_instance import ServerServiceInstance, construct_server_service_instance # noqa: F401 | ||
from .client_service_instance import ClientServiceInstance, construct_client_service_instance, MethodResult # noqa: F401 | ||
from .server_service_instance import ( | ||
ServerServiceInstance, | ||
construct_server_service_instance, | ||
) # noqa: F401 | ||
from .client_service_instance import ( | ||
ClientServiceInstance, | ||
construct_client_service_instance, | ||
MethodResult, | ||
) # noqa: F401 | ||
|
||
from ._internal.someip_message import SomeIpMessage # noqa: F401 |
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 |
---|---|---|
@@ -1,15 +0,0 @@ | ||
# Copyright (C) 2024 Christian H. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||