gitea源码

metadata.go 565B

12345678910111213141516
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package pypi
  4. // Metadata represents the metadata of a PyPI package
  5. type Metadata struct {
  6. Author string `json:"author,omitempty"`
  7. Description string `json:"description,omitempty"`
  8. LongDescription string `json:"long_description,omitempty"`
  9. Summary string `json:"summary,omitempty"`
  10. ProjectURL string `json:"project_url,omitempty"`
  11. License string `json:"license,omitempty"`
  12. RequiresPython string `json:"requires_python,omitempty"`
  13. }