Skip to content

Commit

Permalink
Merge pull request #15 from eduidl/change-package-name
Browse files Browse the repository at this point in the history
Change package name for PyPi
  • Loading branch information
eduidl authored Oct 24, 2023
2 parents 75702d8 + da592e9 commit e700fef
Show file tree
Hide file tree
Showing 26 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "rtui"
name = "rtui-app"
version = "0.2.0"
description = "A TUI tool for ROS1/2"
authors = ["Yuma Hiramatsu <yuma.hiramatsu@gmail.com>"]
Expand All @@ -8,7 +8,7 @@ license = "Apache License 2.0"
readme = "README.md"

[tool.poetry.scripts]
rtui = "rtui.cli:main"
rtui = "rtui_app.cli:main"

[tool.poetry.dependencies]
python = "^3.8"
Expand All @@ -35,9 +35,9 @@ taskipy = "^1"
[tool.taskipy.tasks]
check_all = "task check && task check_type"
check = "task check_lint && task check_format"
check_lint = "flake8 rtui"
check_lint = "flake8 rtui_app"
check_format = "black . --check && isort . --check --diff"
check_type = "mypy rtui"
check_type = "mypy rtui_app"
format = "black . && isort ."
test = "python -m unittest tests -v"

Expand Down
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.
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/ros1/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import rospy

from rtui.ros.interface.ros1 import Ros1
from rtui_app.ros.interface.ros1 import Ros1


def ignore_warnings(test_func):
Expand Down
2 changes: 1 addition & 1 deletion tests/ros2/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import unittest
import warnings

from rtui.ros.interface.ros2 import Ros2
from rtui_app.ros.interface.ros2 import Ros2

from .node.dummy_node1 import DummyNode1
from .node.dummy_node2 import DummyNode2
Expand Down
2 changes: 1 addition & 1 deletion tests/test_history.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from rtui.utility.hisotry import History
from rtui_app.utility.hisotry import History


def init_history() -> History:
Expand Down
6 changes: 3 additions & 3 deletions tests/view/test_info_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from textual.containers import ScrollableContainer
from textual.widgets import Static

from rtui.event import RosEntitySelected
from rtui.ros import RosClient, RosEntity, RosEntityType
from rtui.widgets import RosEntityInfoPanel
from rtui_app.event import RosEntitySelected
from rtui_app.ros import RosClient, RosEntity, RosEntityType
from rtui_app.widgets import RosEntityInfoPanel


class ExampleApp(App):
Expand Down
6 changes: 3 additions & 3 deletions tests/view/test_list_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from textual.containers import ScrollableContainer
from textual.widgets import Static

from rtui.event import RosEntitySelected
from rtui.ros import RosClient, RosEntityType
from rtui.widgets import RosEntityListPanel
from rtui_app.event import RosEntitySelected
from rtui_app.ros import RosClient, RosEntityType
from rtui_app.widgets import RosEntityListPanel


class ExampleApp(App):
Expand Down

0 comments on commit e700fef

Please sign in to comment.