From a4ef659f0f8d2fa5952889c6b04cc1ad51b6913d Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 15 Aug 2024 20:50:00 +0200 Subject: [PATCH] Prepare version 0.0.4 --- .gitignore | 2 ++ setup.cfg | 3 ++- src/someipy/__init__.py | 26 +++++++++----------------- src/someipy/_internal/__init__.py | 15 --------------- 4 files changed, 13 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index 81d50d0..8e9d16a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ venv/ test_apps/build test_apps/install + +build/ \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 45dece7..1bb1e14 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = someipy -version = 0.0.3 +version = 0.0.4 author = Christian H. author_email = someipy.package@gmail.com 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 = diff --git a/src/someipy/__init__.py b/src/someipy/__init__.py index 2728b31..6e5ca15 100644 --- a/src/someipy/__init__.py +++ b/src/someipy/__init__.py @@ -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 . - 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 diff --git a/src/someipy/_internal/__init__.py b/src/someipy/_internal/__init__.py index 65359c5..e69de29 100644 --- a/src/someipy/_internal/__init__.py +++ b/src/someipy/_internal/__init__.py @@ -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 . -