Get the system's binary path, either `bin` on reasonable systems or `Scripts` on Windows.
()
| 67 | |
| 68 | |
| 69 | def bin_path(): |
| 70 | """Get the system's binary path, either `bin` on reasonable systems |
| 71 | or `Scripts` on Windows. |
| 72 | """ |
| 73 | path = "bin" |
| 74 | |
| 75 | if platform.system() == "Windows": |
| 76 | path = "Scripts" |
| 77 | |
| 78 | return path |
| 79 | |
| 80 | |
| 81 | def virtualenv_enabled(): |
no outgoing calls
no test coverage detected