giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
16 lines
565 B
Go
16 lines
565 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pypi
|
|
|
|
// Metadata represents the metadata of a PyPI package
|
|
type Metadata struct {
|
|
Author string `json:"author,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
LongDescription string `json:"long_description,omitempty"`
|
|
Summary string `json:"summary,omitempty"`
|
|
ProjectURL string `json:"project_url,omitempty"`
|
|
License string `json:"license,omitempty"`
|
|
RequiresPython string `json:"requires_python,omitempty"`
|
|
}
|