File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ read the MIRTE documentation.
66To check the Python code style run:
77``` sh
88pip install black
9- black --check ** / ** .py
9+ black --check .
1010# Fix by using
11- black ** / ** .py
11+ black .
1212```
Original file line number Diff line number Diff line change 55
66setuptools .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" ,
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)
You can’t perform that action at this time.
0 commit comments