| 1543 | raise ImportError("Don't hide me!") |
| 1544 | |
| 1545 | class Distribution: |
| 1546 | version = "1.0" |
| 1547 | files = ("foo.txt",) |
| 1548 | metadata = {"name": "foo"} |
| 1549 | entry_points = (DummyEntryPoint(),) |
| 1550 | |
| 1551 | def distributions(): |
| 1552 | return (Distribution(),) |