-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add authors to pyproject.toml (#263)
* Add authors to pyproject.toml * Add historical authors * Add AUTHORS file
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Dmytro Karpenko | ||
Fredrik Larsen | ||
Magnus Hirth | ||
Marius Bakke | ||
Nico | ||
Nils Hiorth | ||
Paal Braathen | ||
Peder Hovdan Andresen | ||
Safet Amedov | ||
Terje Kvernes | ||
Øyvind Hagberg | ||
Øyvind Kolbu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,26 @@ build-backend = "setuptools.build_meta" | |
name = "mreg-cli" | ||
description = "MREG interactive command line client" | ||
readme = "README.md" | ||
maintainers = [ | ||
# Active maintainers | ||
{ name = "Terje Kvernes", email = "[email protected]" }, | ||
{ name = "Øyvind Hagberg", email = "[email protected]" }, | ||
{ name = "Peder Hovdan Andresen", email = "[email protected]" }, | ||
] | ||
authors = [ | ||
# Historical authors | ||
{ name = "Øyvind Kolbu", email = "[email protected]" }, | ||
{ name = "Safet A", email = "[email protected]" }, | ||
{ name = "Magnus Hirth", email = "[email protected]" }, | ||
{ name = "Nico", email = "[email protected]" }, | ||
{ name = "Marius Bakke", email = "[email protected]" }, | ||
{ name = "Fredrik Larsen", email = "[email protected]" }, | ||
{ name = "Paal Braathen", email = "[email protected]" }, | ||
{ name = "Nils Hiorth", email = "[email protected]" }, | ||
{ name = "Dmytro Karpenko", email = "[email protected]" }, | ||
{ name = "Others (see AUTHORS)" }, | ||
] | ||
|
||
requires-python = ">=3.11" | ||
license = { file = "LICENSE" } | ||
keywords = ["mreg", "cli", "interactive"] | ||
|