Skip to content

Commit 8f48cb9

Browse files
committed
Also fixing style in setup
1 parent 09d690d commit 8f48cb9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ read the MIRTE documentation.
66
To check the Python code style run:
77
```sh
88
pip install black
9-
black --check **/**.py
9+
black --check .
1010
# Fix by using
11-
black **/**.py
11+
black .
1212
```

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
setuptools.setup(
77
name="mirte_robot",
8-
install_requires=["websocket_server"], # TODO: Require mirte_msgs? rcl_interfaces? controller_manager_msgs?
8+
install_requires=[
9+
"websocket_server"
10+
], # TODO: Require mirte_msgs? rcl_interfaces? controller_manager_msgs?
911
# Also requires "rclpy"
1012
version="0.1.0",
1113
author="Martin Klomp",
@@ -14,12 +16,12 @@
1416
long_description=long_description,
1517
long_description_content_type="text/markdown",
1618
url="https://github.com/mirte-robot/mirte-python",
17-
packages=['mirte_robot'],
19+
packages=["mirte_robot"],
1820
license="Apache License 2.0",
1921
classifiers=[
2022
"Programming Language :: Python :: 3",
2123
"License :: OSI Approved :: Apache Software License",
2224
"Operating System :: OS Independent",
2325
],
24-
python_requires='>=3.6',
26+
python_requires=">=3.6",
2527
)

0 commit comments

Comments
 (0)