File tree Expand file tree Collapse file tree 7 files changed +8
-58
lines changed Expand file tree Collapse file tree 7 files changed +8
-58
lines changed Original file line number Diff line number Diff line change 33
44The following modules are callable from ``python-can ``.
55
6- They can be called for example by ``python -m can.logger `` or ``can_logger.py `` (if installed using pip).
6+ They can be called for example by ``python -m can.logger `` or ``can_logger `` (if installed using pip).
77
88can.logger
99----------
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ classifiers = [
4545]
4646
4747[project .scripts ]
48- " can_logconvert.py" = " scripts.can_logconvert :main"
49- " can_logger.py" = " scripts.can_logger :main"
50- " can_player.py" = " scripts.can_player :main"
51- " can_viewer.py" = " scripts.can_viewer :main"
48+ can_logconvert = " can.logconvert :main"
49+ can_logger = " can.logger :main"
50+ can_player = " can.player :main"
51+ can_viewer = " can.viewer :main"
5252
5353[project .urls ]
5454homepage = " https://github.com/hardbyte/python-can"
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -74,10 +74,8 @@ class TestLoggerScript(CanScriptTest):
7474 def _commands (self ):
7575 commands = [
7676 "python -m can.logger --help" ,
77- "python scripts/ can_logger.py --help" ,
77+ "can_logger --help" ,
7878 ]
79- if IS_UNIX :
80- commands += ["can_logger.py --help" ]
8179 return commands
8280
8381 def _import (self ):
@@ -90,10 +88,8 @@ class TestPlayerScript(CanScriptTest):
9088 def _commands (self ):
9189 commands = [
9290 "python -m can.player --help" ,
93- "python scripts/ can_player.py --help" ,
91+ "can_player --help" ,
9492 ]
95- if IS_UNIX :
96- commands += ["can_player.py --help" ]
9793 return commands
9894
9995 def _import (self ):
@@ -106,10 +102,8 @@ class TestLogconvertScript(CanScriptTest):
106102 def _commands (self ):
107103 commands = [
108104 "python -m can.logconvert --help" ,
109- "python scripts/ can_logconvert.py --help" ,
105+ "can_logconvert --help" ,
110106 ]
111- if IS_UNIX :
112- commands += ["can_logconvert.py --help" ]
113107 return commands
114108
115109 def _import (self ):
You can’t perform that action at this time.
0 commit comments