Skip to content

Commit

Permalink
Prepare version 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
chrizog committed Aug 15, 2024
1 parent c9095a2 commit a4ef659
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 33 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ venv/

test_apps/build
test_apps/install

build/
3 changes: 2 additions & 1 deletion setup.cfg
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
Expand All @@ -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 =
Expand Down
26 changes: 9 additions & 17 deletions src/someipy/__init__.py
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
15 changes: 0 additions & 15 deletions src/someipy/_internal/__init__.py
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/>.

0 comments on commit a4ef659

Please sign in to comment.