Metadata represents the metadata for a Python package.
| 22 | // Metadata represents the metadata for a Python package. |
| 23 | |
| 24 | type ArtifactInfo struct { |
| 25 | pkg.ArtifactInfo |
| 26 | Version string |
| 27 | Filename string |
| 28 | Metadata python.Metadata |
| 29 | } |
| 30 | |
| 31 | // BaseArtifactInfo implements pkg.PackageArtifactInfo interface. |
| 32 | func (a ArtifactInfo) BaseArtifactInfo() pkg.ArtifactInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected