1---
2# .about.yml project metadata
3#
4# Short name that acts as the project identifier (required)
5name: hmacauth
6
7# Full proper name of the project (required)
8full_name: HMAC Authentication package for Go
9
10# The type of content in the repo
11# values: app, docs, policy
12type: app
13
14# Describes whether a project team, working group/guild, etc. owns the repo (required)
15# values: guild, working-group, project
16owner_type: project
17
18# Name of the main project repo if this is a sub-repo; name of the working group/guild repo if this is a working group/guild subproject
19#parent:
20
21# Maturity stage of the project (required)
22# values: discovery, alpha, beta, live
23stage: discovery
24
25# Whether or not the project is actively maintained (required)
26# values: active, deprecated
27status: active
28
29# Description of the project
30description: >
31  Signs and validates HTTP requests based on a shared-secret HMAC signature
32
33# Should be 'true' if the project has a continuous build (required)
34# values: true, false
35testable: true
36
37# Team members contributing to the project (required)
38# Items:
39# - github: GitHub user name
40#   id: Internal team identifier/user name
41#   role: Team member's role; leads should be designated as 'lead'
42team:
43- github: mbland
44  role: lead
45
46# Partners for whom the project is developed
47#partners:
48#-
49
50# Brief descriptions of significant project developments
51#milestones:
52#-
53
54# Technologies used to build the project
55stack:
56- Go
57
58# Brief description of the project's outcomes
59#impact:
60
61# Services used to supply project status information
62# Items:
63# - name: Name of the service
64#   category: Type of the service
65#   url: URL for detailed information
66#   badge: URL for the status badge
67#services:
68#-
69
70# Licenses that apply to the project and/or its components (required)
71# Items by property name pattern:
72#   .*:
73#     name: Name of the license from the Software Package Data Exchange (SPDX): https://spdx.org/licenses/
74#     url: URL for the text of the license
75licenses:
76  hmacauth:
77    name: ISC
78    url: https://github.com/mbland/hmacauth/blob/master/LICENSE.md
79
80# Blogs or websites associated with project development
81#blog:
82#-
83
84# Links to project artifacts
85# Items:
86# - url: URL for the link
87#   text: Anchor text for the link
88#links:
89#- url:
90#  text:
91
92# Email addresses of points-of-contact
93contact:
94- url: mailto:mbland@acm.org
95  text: Mike Bland
96- url: https://github.com/ISC/hmacauth/issues
97  text: mbland/hmacauth issues
98