Return the list of all PypiPackage objects built from a local directory. Return an empty list if the package cannot be found.
(directory=THIRDPARTY_DIR)
| 1813 | |
| 1814 | |
| 1815 | def get_local_packages(directory=THIRDPARTY_DIR): |
| 1816 | """ |
| 1817 | Return the list of all PypiPackage objects built from a local directory. Return |
| 1818 | an empty list if the package cannot be found. |
| 1819 | """ |
| 1820 | return list(PypiPackage.packages_from_dir(directory=directory)) |
| 1821 | |
| 1822 | |
| 1823 | ################################################################################ |
no test coverage detected